var JS = { start: function(){ $("cat").addEvent('change', function(e) { //primero voy a parar el evento para que no se envíe como lo haría normalmente e.stop(); valor=$('cat').value; svcUrl="http://www.Sisplanet.com/enlaces/svc/ajx-get-combo/" + valor; var req = new Request.HTML({url:svcUrl, onSuccess: function(html) { //Clear the text currently inside the results div. $('subcat').set('text', ''); //Inject the new DOM elements into the results div. $('subcat').adopt(html); } }); req.send(); }); } } window.addEvent('load', JS.start);