function setOptions(o) { var select2 = document.selectdestination.destination; select2.options.length = 0; select2.options[select2.options.length] = new Option('-- Reiseziel --') if(o == "323") { select2.options[select2.options.length] = new Option('Bath','325'); select2.options[select2.options.length] = new Option('Bexhill on Sea','331'); select2.options[select2.options.length] = new Option('Eastbourne','330'); select2.options[select2.options.length] = new Option('Hastings','324'); select2.options[select2.options.length] = new Option('London','329'); select2.options[select2.options.length] = new Option('Stratford-upon-Avon','328'); select2.options[select2.options.length] = new Option('West-Country','327'); select2.options[select2.options.length] = new Option('Yorkshire','326'); } else if(o == "336") { select2.options[select2.options.length] = new Option('Amsterdam','338'); select2.options[select2.options.length] = new Option('Arnheim','339'); select2.options[select2.options.length] = new Option('Zwolle/Heino','337'); } else if(o == "332") { select2.options[select2.options.length] = new Option('Edinburgh','334'); select2.options[select2.options.length] = new Option('Perth','333'); select2.options[select2.options.length] = new Option('Stirling','335'); } else { select2.options[select2.options.length] = new Option('Amsterdam','0'); select2.options[select2.options.length] = new Option('Arnheim','1'); select2.options[select2.options.length] = new Option('Bath','2'); select2.options[select2.options.length] = new Option('Bexhill on Sea','3'); select2.options[select2.options.length] = new Option('Eastbourne','4'); select2.options[select2.options.length] = new Option('Edinburgh','5'); select2.options[select2.options.length] = new Option('Hastings','6'); select2.options[select2.options.length] = new Option('London','7'); select2.options[select2.options.length] = new Option('Perth','8'); select2.options[select2.options.length] = new Option('Stirling','9'); select2.options[select2.options.length] = new Option('Stratford-upon-Avon','10'); select2.options[select2.options.length] = new Option('West-Country','11'); select2.options[select2.options.length] = new Option('Yorkshire','12'); select2.options[select2.options.length] = new Option('Zwolle/Heino','13'); }select2.focus() }