I have 2 dropdown list in my html. Is possible for me to populate the option values in the second dropdown list depend on what I select in the first one.
Thank you.
Zorro
<table>
<tr>
<td>
<form name="frmSelect" method="POST">
<select name="firstSelect" onChange="populateSecondSelect()">
<option selected>Select One</option>
<option>a</option>
<option>b</option>
</select>
</td>
<td>
<select name="secondSelect">
<option selected>Select One</option>
<option></option>
<option></option>
</select>
</form>
</td>
</tr>
</table>