Bind the logic to the $.change() event and get the current value from $.val() to determine where the user should be redirected. This example assumes that the location is stored directly in the value itself.
$(".mySelect").change(function(e){ window.location = $(this).val(); });
source share