function navigate(choice)
{
	var url = choice.options[choice.selectedIndex].value;
	if (url )
	{
		location.href = url;
	}
}
