I have a drop down that looks like this :
<select>
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="mercedes">Mercedes</option>
<option value="audi">Audi</option>
</select>
How can I pre populate the value to saab, based on the url. I have links on a different page, one for each of these options. I want people to be able to selct the link "saab", some how pass that though the url and make "saab" selected when the page with this form loads. Preferably a java script solution if possible?