
/* function jumpTo(list,loc) {
	window.location = loc + list.options[list.selectedIndex].value;
	} */
	
function jumpTo(list) {
	window.location = list.options[list.selectedIndex].value;
	}
