/*-----------------------------
SHOPPING ND EDITORA
www.ndproducoes.com
Tecnologia: DablioTi
Desenvolvedor: Pablo Garrido
-----------------------------*/

$(document).ready(function()
{
	/*FUNÇÃO PARA CARREGAR DINÂMICAMENTE AS CIDADES*/
	$("select[name=estado]").change(function()
	{
				
		$.post("exibirCidades.php", 
					{
						estado:$(this).val()
					},
					function(valor)
					{
						$("#select_cidade").html(valor);
					}
			  )
		
	})
	//------------------------------------------------------------------
	
})