recuperar campo descripción de un combo

Una solución con Javascript sería

function extender_objeto_js()
{
	echo "
	//---- Validacion de EFs -----------------------------------
	
            {$this->objeto_js}.evt__nro_tramite__procesar = function(es_inicial) 
             {

                if (!es_inicial) 
                {
                    var combo = this.ef('nro_tramite').input();
                    var indice = combo.selectedIndex;
                    var tramite_diaguita = this.ef('nro_tramite').get_estado();
                    var valor = combo.options[indice].text;
                    if (valor!='-- Seleccione --')
                    {
                    this.ef('detalle_con').set_estado(valor);
                    }
                    else
                    {
                    var valor = ' ';
                    this.ef('detalle_con').set_estado(valor);
                    }
                    
                }    
             }   
	";
}

Saludos