function reloadPage() {
	var yIndex = document.formular.y.selectedIndex;
	var xIndex = document.formular.x.selectedIndex;
	var lIndex = document.formular.l.selectedIndex;
	
	var y = document.formular.y.options[yIndex].value;
	var x = document.formular.x.options[xIndex].value;
	var l = document.formular.l.options[lIndex].value;
	
	var get = "?";
	
	get = get.concat("y=").concat(y).concat("&");
	get = get.concat("x=").concat(x).concat("&");
	get = get.concat("l=").concat(l);
	
	window.location.search = get;
}
