var regiondb = new Object() regiondb[0] = [{value:"0", text:"Không chọn quận"}];regiondb[758] = [{value:"0", text:"Không chọn"},{value:"23", text:"APC"}];regiondb[770] = [{value:"0", text:"Không chọn"},{value:"15", text:"France"}];regiondb[771] = [{value:"0", text:"Không chọn"},{value:"24", text:"Cirprotec"}];regiondb[772] = [{value:"0", text:"Không chọn"},{value:"27", text:"OBO"}];regiondb[773] = [{value:"0", text:"Không chọn"},{value:"20", text:"Czech Republic"}];regiondb[774] = [{value:"0", text:"Không chọn"},{value:"23", text:"APC"}];regiondb[792] = [{value:"0", text:"Không chọn"},{value:"12", text:"MUNHEAN"}];regiondb[794] = [{value:"0", text:"Không chọn"},{value:"32", text:"Hex/VIETTDI"},{value:"33", text:"TAYA-VIỆT NAM"},{value:"34", text:"VIETTDI"}];regiondb[802] = [{value:"0", text:"Không chọn"},{value:"42", text:"Cadweld/Kumwell"}];regiondb[806] = [{value:"0", text:"Không chọn"},{value:"37", text:"ERICO - Mỹ"},{value:"41", text:"Indelec - Pháp"},{value:"40", text:"Ingesco - Tây Ban Nha"},{value:"38", text:"LPI - ÚC"},{value:"39", text:"Paratonnerre - Pháp"},{value:"22", text:"Thailand"},{value:"43", text:"Thổ Nhĩ Kỳ"}];regiondb[811] = [{value:"0", text:"Không chọn"},{value:"24", text:"Cirprotec"}];regiondb[881] = [{value:"0", text:"Không chọn"},{value:"45", text:"VISHAY ESTA - Czech"}];regiondb[883] = [{value:"0", text:"Không chọn"},{value:"46", text:"Janitza Electronics - Germany"}]; function setCities(thanpho,quan,valuequan) { var newElem; var chooser = document.getElementById(thanpho); var where = (navigator.appName == "Microsoft Internet Explorer") ? -1 : null; var cityChooser = document.getElementById(quan); while (cityChooser.options.length) { cityChooser.remove(0); } var choice = chooser.options[chooser.selectedIndex].value; var db = regiondb[choice]; if (choice != "") { for (var i = 0; i < db.length; i++) { newElem = document.createElement("option"); newElem.text = db[i].text; newElem.value = db[i].value; cityChooser.add(newElem, where); if(valuequan == db[i].value) cityChooser.options[i].selected = true; } } }