function init_ddl(){ var l = document.getElementById("ddl_location"); l.options[0] = new Option("Hung Vuong Plaza - HCMC", "15"); l.options[1] = new Option("VinCom City Towers - Hanoi", "12"); l.options[2] = new Option("Thuy Duong Plaza - Haiphong", "13"); l.options[3] = new Option("Co-Op Mart - Bien Hoa", "14"); l.options[4] = new Option("Vinh Trung Plaza - Da Nang", "17"); l.options[0].selected=true;update_movie(); var d = document.getElementById("ddl_day"); d.options[0] = new Option("Any","0");d.options[1] = new Option("Friday, December 05, 2008","Friday, December 05, 2008");d.options[2] = new Option("Saturday, December 06, 2008","Saturday, December 06, 2008");d.options[3] = new Option("Sunday, December 07, 2008","Sunday, December 07, 2008");d.options[4] = new Option("Monday, December 08, 2008","Monday, December 08, 2008");d.options[5] = new Option("Tuesday, December 09, 2008","Tuesday, December 09, 2008");d.options[6] = new Option("Wednesday, December 10, 2008","Wednesday, December 10, 2008");d.options[7] = new Option("Thursday, December 11, 2008","Thursday, December 11, 2008");d.options[1].selected = true; }var movie_location = new Array(); movie_location[12] = new Array(); movie_location[12][0]= new Option("Beverly Hills Chihuahua",339); movie_location[12][1]= new Option("Body of Lies",341); movie_location[12][2]= new Option("Butterfly lovers",365); movie_location[12][3]= new Option("High School Musical 3: Senior Year",290); movie_location[12][4]= new Option("Madagascar 2 - Escape 2 Africa",289); movie_location[12][5]= new Option("Mr. Woodcock",291); movie_location[12][6]= new Option("Night In The Rodanthe",353); movie_location[12][7]= new Option("Painted Skin",293); movie_location[12][8]= new Option("Quantum of Solace",292); movie_location[12][9]= new Option("Tropic Thunder",288); movie_location[12][10]= new Option("Wild Child",311); movie_location[13] = new Array(); movie_location[13][0]= new Option("Beverly Hills Chihuahua",339); movie_location[13][1]= new Option("Body of Lies",341); movie_location[13][2]= new Option("Butterfly lovers",365); movie_location[13][3]= new Option("High School Musical 3: Senior Year",290); movie_location[13][4]= new Option("Madagascar 2 - Escape 2 Africa",289); movie_location[13][5]= new Option("Max Payne",313); movie_location[13][6]= new Option("Mr. Woodcock",291); movie_location[13][7]= new Option("Night In The Rodanthe",353); movie_location[13][8]= new Option("Painted Skin",293); movie_location[13][9]= new Option("Quantum of Solace",292); movie_location[13][10]= new Option("Wild Child",311); movie_location[14] = new Array(); movie_location[14][0]= new Option("Beverly Hills Chihuahua",339); movie_location[14][1]= new Option("Body of Lies",341); movie_location[14][2]= new Option("Butterfly lovers",365); movie_location[14][3]= new Option("High School Musical 3: Senior Year",290); movie_location[14][4]= new Option("Madagascar 2 - Escape 2 Africa",289); movie_location[14][5]= new Option("Painted Skin",293); movie_location[14][6]= new Option("Quantum of Solace",292); movie_location[14][7]= new Option("War Inc.",342); movie_location[14][8]= new Option("Wild Child",311); movie_location[15] = new Array(); movie_location[15][0]= new Option("Beverly Hills Chihuahua",339); movie_location[15][1]= new Option("Body of Lies",341); movie_location[15][2]= new Option("Butterfly lovers",365); movie_location[15][3]= new Option("High School Musical 3: Senior Year",290); movie_location[15][4]= new Option("Madagascar 2 - Escape 2 Africa",289); movie_location[15][5]= new Option("Max Payne",313); movie_location[15][6]= new Option("Night In The Rodanthe",353); movie_location[15][7]= new Option("Painted Skin",293); movie_location[15][8]= new Option("Quantum of Solace",292); movie_location[15][9]= new Option("War Inc.",342); movie_location[15][10]= new Option("Wild Child",311); movie_location[17] = new Array(); movie_location[17][0]= new Option("Beverly Hills Chihuahua",339); movie_location[17][1]= new Option("Body of Lies",341); movie_location[17][2]= new Option("Butterfly lovers",365); movie_location[17][3]= new Option("High School Musical 3: Senior Year",290); movie_location[17][4]= new Option("Madagascar 2 - Escape 2 Africa",289); movie_location[17][5]= new Option("Painted Skin",293); movie_location[17][6]= new Option("Quantum of Solace",292); movie_location[17][7]= new Option("Wild Child",311); function update_movie() { var c = document.getElementById("ddl_location").value; var s = document.getElementById("ddl_movie"); for (m = s.options.length - 1; m >= 0; m--) s.options[m] = null; s.options[0] = new Option("Any", "any"); if (movie_location[c] != undefined) { for(i = 0; i < movie_location[c].length; i++) { s.options[i+1] = new Option(movie_location[c][i].text, movie_location[c][i].value); } } s.options[0].selected = true; }