I have the following select
in html.
<select name='busca' onChange='link()'>
<option value="1">OP1</option>
<option value="2">OP2</option>
<option value="3">OP3</option>
<option value="4">OP4</option>
</select>
I need to create a function in jQquey called link
where it picks up the value of the select and loads a link, example: envia.php?op=1
Does anyone know how to do this?