 t = new Date();
 tt = t.getDate()-1;
 document.Formular.Anreisetag.options[tt].selected = true;
 document.Formular.Abreisetag.options[tt].selected = true;
 tm = t.getMonth();
 document.Formular.Anreisemonat.options[tm].selected = true;
 document.Formular.Abreisemonat.options[tm].selected = true;
listObj=document.Formular.Anreisejahr
listLen=listObj.length
ty = t.getFullYear()
for(var i=0;i<listLen;i++)
{
if(listObj.options[i].text==ty)
{
 listObj.options[i].selected=true
 }
}
 listObj=document.Formular.Abreisejahr
 listLen=listObj.length
 ty = t.getFullYear()
 for(var i=0;i<listLen;i++){
  if(listObj.options[i].text==ty){
  listObj.options[i].selected=true
 }
}
