// JavaScript Document
	function at_modelosB(pre,pst){
		if (pst==1) pst='../'; else pst="";
	$('#bmodelo').empty();
			$('#bmodelo').append('<option>Carragando...</option>');
			$('#bcidade').append('<option>Carragando...</option>');
			var fab=$('#bmarca').val();
			$('#bmodelo').empty();
			$.post(pst+'libs/jq.modelos.php',{fab:fab,pre:pre,ext:1},function(dt){
				$('#bmodelo').empty();
				$('#bmodelo').html(dt);
				$('#bmodelo').empty();
				$('#bmodelo').html(dt);
			});
			$.post(pst+'libs/jq.cidades.php',{fab:fab},function(dt){
				$('#bcidade').empty();
				$('#bcidade').html(dt);
				$('select[@name="bcidade"]').selectOptions('0');
				$('select[@name="modelo"]').selectOptions('0');
			});	
	}
	function at_modelosC(pre,pst){
		if (pst==1) pst='../'; else pst="";
		$('#bcidade').empty();
		$('#bcidade').append('<option>Carragando...</option>');
		var fab=$('#bmarca').val();
		var mod=$('#bmodelo').val();
		$.post(pst+'libs/jq.cidades.php',{fab:fab,mod:mod},function(dt){
			$('#bcidade').empty();
			$('#bcidade').html(dt);
			$('select[@name="bcidade"]').selectOptions('0');
		});			
	}

