jQuery(document).ready(function(){
   
   jQuery("select").change(function () {
      if(jQuery(this).value != ''){
         window.location=jQuery(this).val();
      }
   });

});  