function submitform()
{
	formvalue	= (document.booklistform)
		if (formvalue.booklist.options[formvalue.booklist.selectedIndex].value == 0)
			{
			alert("You must choose a destination.");
			return;
			}
		else
			{
			formvalue.submit();
			}	
}
