function openSelected(id,errormessage){
	var box = document.getElementById(id);
	destination = box.options[box.selectedIndex].value;
	if (destination) location.href = destination;
	else alert(errormessage);
}