I currently have a form that contains 2 select drop downs. If the user selects option 3 from the first select(entitytype) i need the "name" on the second to change from "stateID" to "state".
<form id="home-form" name="home-form" method="get" >
<select id="entitytype" class="select required" >
<option value="">Select Your Entity Type</option>
<option value="test1">1</option>
<option value="test1">2</option>
<option value="test3">3</option>
</select>
<select id="stateID" name="stateID" class="select required" >
<option value="">Select Your State</option>
<option value="AL">Alabama</option>
<option value="AK">Alaska</option>
<option value="AZ">Arizona</option>
</select>
<button type="submit" class="btn-form">GET STARTED</button>
</form>