function go(sel) {
	box = document.getElementById(sel);
	destination = box.options[box.selectedIndex].value;
	if(destination) location.href = destination;
}