function messeterminauswahl(t,c) {
c.options.length = 0;
// t.selectedIndex == 0 ist die dafür da damit auch nichts in termine steht!
if (t.selectedIndex == 0) {c.options[0] = new Option("");}
// erste messe und ihre termine
else if (t.selectedIndex == 2) {
c.options[0] = new Option("17.11.2005");
c.options[1] = new Option("18.11.2005");
c.options[2] = new Option("19.11.2005");
c.options[3] = new Option("20.11.2005");
}
// zweite messe und ihre termine
else if (t.selectedIndex == 1) {
c.options[0] = new Option("22.09.2005");
c.options[1] = new Option("23.09.2005");
c.options[2] = new Option("24.09.2005");
}
// und so weiter

if (document.layers) {history.go(0);}

}