Envio De Eventos En Dropdownlist

hola, alguien sabe como hacer el cambio de evento? +

<script>

function pagoOnChange(sel) {

  if (sel.value==&quot;Interno&quot;){


       divC = document.getElementById(&quot;Personal&quot;);


       divC.style.display = &quot;&quot;;





       divT = document.getElementById(&quot;Asistente&quot;);


       divT.style.display = &quot;none&quot;;





  }else{





       divC = document.getElementById(&quot;Personal&quot;);


       divC.style.display=&quot;none&quot;;





       divT = document.getElementById(&quot;Asistente&quot;);


       divT.style.display = &quot;&quot;;


  }

}

</script>

   &lt;?php echo &#036;form-&gt;labelEx(&#036;tipo,'Tipo de Asistente'); ?&gt;


&lt;?php &#036;options = array('Interno'=&gt;'Interno','Externo'=&gt;'Externo');?&gt;


&lt;?php echo &#036;form-&gt;dropDownList(&#036;tipo,'tipo', &#036;options,array('empty' =&gt; 'Seleccione ...', 


'onChange' =&gt; 'javascript:description(this.pagoOnChange)')); ?&gt;


&lt;?php echo &#036;form-&gt;error(&#036;tipo,'tipo'); ?&gt;

No tengo ni idea de cuál es tu problema.

Quieres programar el evento onChange para un dropdownlist?

Un saludo.