Assuming I have two options at the beginning of a form, option A and option B
<label>SELECIONE UMA OPÇÃO</label>
<form>
<label><input value="A" name="opcao" type="radio">opcao A</label>
<label><input value="B" name="opcao" type="radio">opcao B</label>
</form>
Assuming I select option A, I want it to load form A, in theory the form A would look like this:
<form id="A">
<input name="A" placeholder="A opção "A" do botão radio foi selecionada"
</form>
And therefore if I select option B, the form for B will be loaded:
<form id="B">
<input name="B" placeholder="A opção "B" do botão radio foi selecionada"
</form>