$(function() {

  	$("select#location-select").change(function(){
  		$goto = $(this).val();
  		window.location = $goto;
    })
    
    .end()
})