I have two selectbox.
First one contains big category , and second one contains small category like countries and cities.
America carifornia,NY,Sandiego
China beijing, shanghai
Japan tokyo, oosaka
first selectbox
<select name=countries>
<option value=america>America</option>
<option value=china>China</option>
<option value=japan>Japan</option>
</select>
second selectbox
<select name=usacities>
<option value=carifornia>carifornia</option>
<option value=ny>NY</option>
<option value=sandiego>sandiego</option>
</select>
now I would like to change the second select box dynamically according to first select box.
Useing jquery is the best way to make this??
At that time I should change all the select box including select tag? or I should keep only the data somwhere and change only data?