S = {
	load:function(){
		$('select').change(S.goURL);
	},
	goURL:function(){
		window.location = this.value;
	}
}
$(document).ready(S.load);
