Here is a working example
Insert into the body
Code:
TEXT BEFORE BLOCK<br>
<input type="radio" id="accept" onclick="document.getElementById('dropdown').style.display = 'block', document.getElementById('decline').checked = 0"> I ACCEPT<br>
<input type="radio" id="decline" onclick="document.getElementById('dropdown').style.display = 'none',document.getElementById('accept').checked = 0"> I DECLINE<br>
<div id="dropdown" style="display:none">
WOW you accept. <br>
Quick lets take his money
</div>
<br>
TEXT AFTER BLOCK
Bookmarks