window.addEvent('domready', function(){
	$('btnShoMe').addEvent('click',function(){
		callShowProductsByCategorie($('cboProduct').value);
	});
});

function callShowProductsByCategorie(categorieId){
	$('btnShoMe').remove();
	$('divCategoriesOnProduct').adopt(
		new Element('img', {src:site_url('system/application/views/images/loading.gif')}) 
	);
	var frmPost = new Element('form',{name:'frmPostCat', id:'frmPostCat', method:'POST', action:site_url('productos')});
	frmPost.adopt(
		new Element('input', {type:'hidden', name:'hidCatId', id:'hidCatId', value:categorieId})
	);
	$$('body')[0].adopt(frmPost);
	$(frmPost).submit();
}