//Funciones js aamd
Event.observe(window, 'load', function() {    
  if ($('seltipo')) {
    $('seltipo').observe('change',function() {
  	  new Ajax.Updater('selmarca', '../aamd/select_marcas_ajax.asp',{
     		method:'get',parameters: { 'idtipo': $('seltipo').value },evalScripts: true
   		});
    });
  };
});
