function carregarMotivRecl(obj){
    var os = obj.options[obj.selectedIndex].value;
    DWRUtil.removeAllOptions('motivRecl');
    if( (os != null) && (os != "")){
        IluminPublica.getMotivReclLista(os, function(dados){
            DWRUtil.addOptions( 'motivRecl', 
                                dados, 
                                'codMotivRecl', 
                                'desMotivRecl');
            if (document.getElementById('motivRecl').size == 2){
                document.getElementById('motivRecl').selectedIndex = 1;
            }
        });
    }
}

