// JavaScript Document
$(document).ready(function(){
	//When select category change, call one php with Its store list
	$("select[name=categoria]").change(function(){
		$("select[name=loja]").html('<option value="0">Carregando...</option>');
		$.post("lojas.php", {categoria:$(this).val()}, function(valor){ $("select[name=loja]").html(valor); });
	});

	//When select store change, show store under
	$("select[name=loja]").change(function(){
		$("#blocoLoja").html('<option value="0">Carregando...</option>');
		$.post("detalhesLoja.php", {loja:$(this).val()}, function(valor){ $("#blocoLoja").html(valor); });
	});

});
