function checkForm(form)  {
	var myindex=document.forms[1].menu.selectedIndex;
	if (myindex==0) {
		alert("Maak een keuze uit de lijst \nen klik op 'inschrijven'.");
		document.forms[1].menu.focus();
	}
	else {
		document.location=document.forms[1].menu.options[myindex].value;
	}
}