0
I have two dropdowns (state and cities)
in select "status"
I have the options of two states ex:
<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 "state" Value ie when I select in the State the "New York " automatically in the dropdown "city" should only appear the cities that have the NY value..
please....