function setOptions(o) { var select2 = document.selectdestination.destination; select2.options.length = 0; select2.options[select2.options.length] = new Option('-- Destination --') if(o == "30") { select2.options[select2.options.length] = new Option('1066 - Hastings','31'); select2.options[select2.options.length] = new Option('Bath','308'); select2.options[select2.options.length] = new Option('Bexhill on Sea','302'); select2.options[select2.options.length] = new Option('Eastbourne','303'); select2.options[select2.options.length] = new Option('London','304'); select2.options[select2.options.length] = new Option('Straford upon Avon','305'); select2.options[select2.options.length] = new Option('West Country','306'); select2.options[select2.options.length] = new Option('Yorkshire','307'); } else if(o == "233") { select2.options[select2.options.length] = new Option('Amsterdam','234'); select2.options[select2.options.length] = new Option('Arnhem','314'); select2.options[select2.options.length] = new Option('Zwolle / Heino','235'); } else if(o == "311") { select2.options[select2.options.length] = new Option('Perth','313'); select2.options[select2.options.length] = new Option('Stirling','312'); } else if(o == "32") { select2.options[select2.options.length] = new Option('Shrewsbury','33'); } else { select2.options[select2.options.length] = new Option('1066 - Hastings','0'); select2.options[select2.options.length] = new Option('Amsterdam','1'); select2.options[select2.options.length] = new Option('Arnhem','2'); select2.options[select2.options.length] = new Option('Bath','3'); select2.options[select2.options.length] = new Option('Bexhill on Sea','4'); select2.options[select2.options.length] = new Option('Eastbourne','5'); select2.options[select2.options.length] = new Option('London','6'); select2.options[select2.options.length] = new Option('Perth','7'); select2.options[select2.options.length] = new Option('Shrewsbury','8'); select2.options[select2.options.length] = new Option('Stirling','9'); select2.options[select2.options.length] = new Option('Straford 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() }