mohityadavx
Youngling
Well I have this a drop down menu like this :-
I want to make a textbox appear on when someone select monthly EMI , different textbox when someone select yearly EMI and again a different textbox on selection of one time full repayment selection.The textbox otherwwise should remain hidden.
Code:
<table>
<form name="input_details" method="post" action="promissorynoteprocess.php">
<tr>
<td style="padding-right: 10px; float: left; width:150px">
Payment Method:
</td>
<td>
<select id = "payment" name="payment" style="height: 29px; width: 110px;">
<option>Select One</option>
<option>Monthly EMI</option>
<option>Yearly EMI</option>
<option>One time Full Repayment</option>
</select>
</td>
</tr>
</form>
</table>
I want to make a textbox appear on when someone select monthly EMI , different textbox when someone select yearly EMI and again a different textbox on selection of one time full repayment selection.The textbox otherwwise should remain hidden.