jQuery(document).ready(function(){
	
	jQuery(".shopcategories").change(function () {
		jQuery.post('/shop_search_advanced/getprofiles/' + jQuery('.shopcategories').val(), {}, function(data){
			jQuery('.profiles').empty();
			jQuery('.profiles').append('<option value="">Seleziona ...</option>')
			jQuery.each(data, function(name,value){
				jQuery('.profiles').append('<option value="' + name + '">' + value + '</option>')
			})
		}, 'json');
	});
	
	jQuery(".profiles").change(function () {
		location.href = "/shop_search_advanced/show/" + jQuery('.shopcategories').val() +  '/' + jQuery('.profiles option:selected').val();
	});
});	


