One of the features on my website is a radio button with 2 choices. Here's how it looks in the code:
<td>City : </td>
<td><input type="radio" name="r_city" value="Same" checked="checked" />Same</td>
<td><input type="radio" name="r_city" value="Different" />Different</td>
<td>textbox here</td>
When "Different" is selected, I want to make a textbox appear on the page.
This functionality is part of a JSP page. Thank you!