$(document).ready( function() {
   $('#select').change( function() {
      location.href = $(this).val();
    });
});

