function quickJump(sel)
{
	if (sel.options[sel.selectedIndex].value == "") return false;
	
	location.href = sel.options[sel.selectedIndex].value;
}