I would like a dropdown menu Where the options in the first box are 'state' and 'province' and the second will populate based on the first selection (state -> USA states, province -> canada provinces) Here is the code I have so far:
<form id="updateTreventLocation" action="
<table>
<%=Url.Action("SavedTreventLocation","Prod")%>" method="post">
<tr>
<td colspan="2" class="label">City:</td>
<td class="content">
<input type="text" maxlength="100" name="CityLocation" value="<%=EditTreventLocation.locationCity%>" />
</td>
</tr>
<tr>
<td colspan="2" class="label">Province/State:</td>
<td class="content">
<input type="text" maxlength="50" name="ProvinceLocation" value="<%=EditTreventLocation.locationProvince%>" />
</td>
</tr>
</table>
</form>