|
||
function addStatesOption(val,txt) {
var oSelect = document.getElementById('select_id');
var oOption = document.createElement('OPTION');
if (document.selection) { //IE support
oSelect.options.add(oOption);
oOption.innerText = txt;
oOption.value = val;
}
else {
oOption.text = txt;
oOption.value = val;
oSelect.options[oStates.options.length]=oOption;
}
}
|
All Rights Reserved 2006 Salix.gr |
Design by Ades Design |
Hosting by e-emporio |
forum.Salix.gr powered by Phorum
|