    function addOption(selectId, txt, val){
        var objOption = new Option(txt, val);
        document.getElementById(selectId).options.add(objOption);
}