I need assistance with the following form:-
<form action="">
<table border="0">
<td colspan="2" class="instruction">Please select an option to search.</td>
</table>
<table>
<tr>
<td><label>
<input onClick="generatenew();" type="radio" name="search_option" value="code" id="search_option_0">
Customer Code</label></td>
<td><label>
<input type="radio" name="search_option" value="company" id="search_option_1">
Customer Company</label></td>
<td><label>
<input type="radio" name="search_option" value="name" id="search_option_2">
Customer Name</label></td>
<td><label>
<input type="radio" name="search_option" value="email" id="search_option_3">
Customer Email</label></td>
</tr>
</table>
<input class="Button" name="search_submit" type="submit" value="Search">
</form>
Following the last </table>
, I am looking to add a text box that appears dynamically based on the selected radio button. This should happen without refreshing the page.