function CheckAuswahl1 () 
{
  if (document.mepform1.veranstaltungId.selectedIndex > 0) 
  {
	document.mepform1.submit();
  }

}

function CheckAuswahl2 () 
{
  if (document.mepform2.begleiterId.selectedIndex > 0 && document.mepform2.branche.selectedIndex > 0)
  {
	document.mepform2.submit();
  }

}

