function jump(sel) {
	if (sel.selectedIndex != 0) {
		var destination = sel.options[sel.selectedIndex].value;
		location.href = destination;
	}
}