I have two dropdowns (state and cities)
do not select "status"
I have the options of two ex states:
<select name="state">
<option value="NY">New York</option>
<option value="LA">Los Angeles</option>
</select>
<select name="city">
<option value="NY">Norwich</option>
<option value="NY">Younkers </option>
<option value="LA">Beverly Hills </option>
<option value="LA">Santa Monica</option>
</select>
What I need is to filter via jquery the dropdown "city" using the value of "state" ie when I select in the State "New York" automatically in the dropdown "city" should only appear the cities that have the value NY ..
Please ...