
function jumpTo(s) {
	if (s.selectedIndex != 0 && s.selectedIndex != 1) {
		self.location.href = s.options[s.selectedIndex].value;
		return 1;
	}
}

