function searchs(selectName) {
	choiceIndex = selectName.selectedIndex;
	locationChoice = selectName.options[choiceIndex];
	if (locationChoice.value != "") {
		window.open(locationChoice.value,"_self")
		}
	}