
	function redirect(combo){
		path = (""+window.location);
		local = path.indexOf("locale=");
		path =  path.substr(0,local) ;
		if( path.indexOf('?') == -1 )
			window.location.replace(path + "?locale="+combo.value);
		else
			window.location.replace(path + "locale="+combo.value);
	}