oh! I didn't see that you were using a dropdown box. So, when you select an item, you want to open it's corresponding link. Isn't it ?
Here's a sample piece of code:
HTML:
html Code:
<select name="gotoLinks" id="gotoLinks">
<option value="http://www.google.com?q=kerala">Kerala</option>
<option value="http://www.google.com?q=india">India</option>
<option value="http://www.google.com?q=us">US</option>
<option value="http://www.google.com?q=canada">Canada</option>
</select>
jQuery code:
Code:
$(document).ready(function(){
// when the user changes the combobox value
$('#gotoLinks').change(function(){
var toURL = $('#gotoLinks :selected').val(); // get the selected items URL
alert(toURL); // display the selected item's URL
window.location = toURL; // goto that URL.
});
});
Here's the fiddle: http://jsfiddle.net/meNYe/