$(document).ready(function(){
	if($('#Content select#SelectYear').length>0){
		$('#Content select#SelectYear').change(function(){
			var Url=window.location.pathname;
			Url+='?year='+$(this).val();
			document.location=Url;
		});
	}
});
