Cargar div mediante jQuery y ajax

jQuery.ajax({ url: a + '_' + trn + 'conSup.vm', async: false, cache: false, success: function(){

 

Importante!! Poner cache: false, sino sólo se ejecuta la 1ra vez.

 

 

Agregar evento change a option select html con jquery

Si se accede por el nombre de los elementos (ej sel1 y boton1)

$('[name=sel1]').change(function()
     {
   $('[name=boton1]').show();
     });

Si se accede por el id:

$('#sel1').change(function() 
     {
   $('#boton1').show();
     });