I have two input fields of type radio depending on the combination of choices I want to call a different form for each case, example.
<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>
<label><input value="C" name="opcao2" type="radio">opcao C</label>
<label><input value="D" name="opcao2" type="radio">opcao D</label>
</form>
If you select option A along with C, a form appears, if you select A with D appear another, B with C another, and B with another D.
How would I do this I'm curled up in the JavaScript part I do not even know where to start, I want to do this without having to refresh the page.