function archivForm(region, monat, jahr) 
{
eins = region.options[region.selectedIndex].value;
zwei = monat.options[monat.selectedIndex].value;
drei = jahr.options[jahr.selectedIndex].value;
url = eins + zwei + drei + ".htm";
 if (eins, zwei, drei!= "error") 
 {
   window.location.href = url;
 }
else
   window.location.href =("error.htm");
}