/*
combo box dinamico  jquery + php + mysql
*/
$(document).ready(function(){
//////////////////////////////////CATEGORIA////////////////////////////////////////////////////////////
$("select[name=pid_tipo]").change(function(){
$("select[name=pid_marca]").html('<option value="0">Carregando...</option>');

$.post("http://www.tudonaregiao.com.br/include/marcas.php",
{pid_tipo:$(this).val()},
function(valor){
$("select[name=pid_marca]").html(valor);
}
)

})
/////////////////////////////////MARCAS//////////////////////////////////////////////////////////
$("select[name=pid_marca]").change(function(){
$("select[name=pid_modelo]").html('<option value="0">Carregando...</option>');

$.post("http://www.tudonaregiao.com.br/include/modelos.php",
{pid_marca:$(this).val()},
function(valor){
$("select[name=pid_modelo]").html(valor);
}
)

})
//////////////////////////////////UF////////////////////////////////////////////////////////////
$("select[name=puf]").change(function(){
$("select[name=id]").html('<option value="0">Carregando...</option>');

$.post("http://www.tudonaregiao.com.br/include/cidades.php",
{puf:$(this).val()},
function(valor){
$("select[name=id]").html(valor);
}
)

})
////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////PATROCINADOR//////////////////////////////////////////////
$("input[name=pindica]").change(function(){
$("select[name=pid_cli]").html('<option value="0">Carregando...</option>');

$.post("http://www.tudonaregiao.com.br/include/patroc.php",
{pindica:$(this).val()},
function(valor){
$("select[name=pid_cli]").html(valor);
}
)

})
////////////////////////////////////////////////////////////////////////////////////////////
})

