function selectPage(HTMLSelect) {
	var choice = HTMLSelect.options[HTMLSelect.selectedIndex].value;
	
	if (choice != 0) {
		var form = document.getElementById("classifications");
		form.action = choice + "_1.html";
		form.submit();
	}
} // selectPage

