 carrega_lcidades(1);
 Descarga(document.all.lojas);
 
 function carrega_lcidades(tipo){
 if (tipo != 0) {
 Descarga(document.all.lcidades);
 parent.frames.branco.location = 'http://www.meuveiculo.com.br/mv2005/scripts/carrega_lcidades.asp?tipo=1';
 }
 return false;
 } 
 
 function Descarga(combo){
	while (combo.options.length > 0){
  		combo.options[(combo.options.length - 1)] = null;
	}
	combo.options[0]=new Option('Aguarde Carregando...',0);
	combo.options.disabled;
 }

 function carrega_lojas(tipo){
 if (tipo == 1) {
 Descarga(document.all.lojas);
 cidade = document.all.lcidades.options[document.all.lcidades.selectedIndex].value
 parent.frames.branco.location = 'http://www.meuveiculo.com.br/mv2005/scripts/carrega_lojas.asp?cidade='+ cidade +'&tipo=1'
 }
 return false;
 }