Visto che usi JQuery cancella l'OnChange dal tuo tag html e aggiungi il seguente script all'interno di $(function(){ ... });

codice:
$("#id-select").change(function(){
		window.location.href = $(this).val();
	});