function go(jumpbox)
{
	if (jumpbox.selectedIndex == 0) {
		return false;
	}
	
	destination = jumpbox.options[jumpbox.selectedIndex].value;
	
	if (destination) location.href = destination;
}