function goToPage(formfield) {
	var value = formfield.options[formfield.selectedIndex].value;
	var url = '/' + value;
	window.location = url;
}
