﻿function GetComboSelectedText(CmbID){
    
    var SeltdIndx = $('#' + CmbID).get(0).selectedIndex;
    
    if (SeltdIndx == -1){
    
        return ''
    }//if (SeltdIndx == -1){
    
    var SelText = $('#' + CmbID).get(0).options[SeltdIndx].text;
   
    return SelText


}//function GetComboSelectedText(CmbID){
