//jQuery Version
$(document).ready(function(){
	$(".sel_yearselector").change(function () {
	   var selUrl = $("select option:selected").val();
	   window.location.href = selUrl;
	});
});
