// Retorna valor de un en objeto select (SelectObj)
function getSelectValue(SelectObj) {
    with (SelectObj)
       return ((selectedIndex>=0) ? options[selectedIndex].value : "");
}
