<form method="get" action="">
<select name="name" onchange='this.form.submit()'>
<option value="a">a</option>
<option value="b">b</option>
</select>
<select name="location" onchange='this.form.submit()'>
<option value="x">x</option>
<option value="y">y</option>
</select>
</form>
I select option 'a' and it works fine, but then if I select 'x', 'a' value disappears from the URL, how do I retain all the values?
Edit: Also on submitting the form, how do I make sure that the selected values remain selected in the select menus as well?
Thanks