$(document).ready(function(){
	//set change event
	$("select[name]=languageswitch").change(function () {
		
		var optionValue = "";
		$("option:selected",$(this)).each(function () {
			optionValue = $(this).attr("value")
			document.location.href = "../"+optionValue;

		});
	})
});