

function selectDropDownPage(){
	pageId = document.getElementById("select1").value;
	var dropDownIndex = document.getElementById("select1").selectedIndex;
	var dropDownValue = document.getElementById("select1")[dropDownIndex].value;
	
	/*for(i=0; i<document.getElementById("select1").length; i++) {
		
		if(document.getElementById("select1")[i].value == dropDownValue) {
			//alert(document.getElementById("select1")[i].value);
			document.getElementById("select1")[i].selected = true;
		}
		
	}*/
	window.location.href = "http://www.steurer.info/"+pageId;
}

