//To set the path of Fale Conosco to be used in the path HTML
function pathFC(){
	location.href="/GBPServiceMgr2.dyn?CntryCd=BR&LangCd=pt&WebSiteID=GBPBR&ReqsType=Pull&ServiceName=GlobalComponent&func=FaleConosco";
}

// To check if the Email Field contains a valid Email ID
function Validate(strRegEx, strEmail) {
            objRegEx = new RegExp(strRegEx);
            return objRegEx.test(strEmail);
}

//To set the Email ID to whom the Fale Conosco Email is to be sent
// moduleName: Mail to Concerned Person or Team
// to/cc 
function getMailID(){	

	if(document.getElementById('moduleName').value=="Vendas_Acessorios_Chevrolet")
document.getElementById('email').value="chevrolet.cacc@gm.com";

if(document.getElementById('moduleName').value=="Frotistas_e_Vendas_Especiais")
document.getElementById('email').value="frota.preferencial@gm.com";


if(document.getElementById('moduleName').value=="Ofertas_e_Promocoes")
document.getElementById('email').value="chevrolet.cacc@gm.com";

if(document.getElementById('moduleName').value=="SIGA_Seminovo_Qualificados_Multimarcas")
document.getElementById('email').value="siga.seminovos@gm.com";

if(document.getElementById('moduleName').value=="Veiculos_Novos")
document.getElementById('email').value="chevrolet.cacc@gm.com";

if(document.getElementById('moduleName').value=="Acessorios_Chevrolet")
document.getElementById('email').value="chevrolet.cacc@gm.com";


if(document.getElementById('moduleName').value=="Pecas_Genuinas")
document.getElementById('email').value="chevrolet.cacc@gm.com";

if(document.getElementById('moduleName').value=="Chevy_Star")
document.getElementById('email').value="chevrolet.cacc@gm.com";

if(document.getElementById('moduleName').value=="Road_Service")
document.getElementById('email').value="chevrolet.cacc@gm.com";


if(document.getElementById('moduleName').value=="Garantia")
document.getElementById('email').value="chevrolet.cacc@gm.com";

if(document.getElementById('moduleName').value=="Manual_do_Proprietario")
document.getElementById('email').value="chevrolet.cacc@gm.com";

if(document.getElementById('moduleName').value=="Recall")
document.getElementById('email').value="chevrolet.cacc@gm.com";

if(document.getElementById('moduleName').value=="Servico")
document.getElementById('email').value="chevrolet.cacc@gm.com";

if(document.getElementById('moduleName').value=="Concessionarias")
document.getElementById('email').value="chevrolet.cacc@gm.com";

if(document.getElementById('moduleName').value=="Assuntos_Institucionais")
document.getElementById('email').value="chevrolet.cacc@gm.com";

if(document.getElementById('moduleName').value=="Instituto_GM")
document.getElementById('email').value="mariadasgracas.martins@gm.com";

if(document.getElementById('moduleName').value=="Sobre_o_Site")
document.getElementById('email').value="chevrolet.cacc@gm.com";

		
}

// To check the word Length of the Text Area
function checkwordcount(maxcount){					
		var textareacontent=document.getElementById('comments').value.length;			
		
		if(textareacontent>=maxcount){	
			document.getElementById('comments').value = document.getElementById('comments').value.substring(0,maxcount);			
		}
}

//To Validate the CPF field
function validacpf(s){
		var i;
		var c = s.substr(0,9);
		var dv = s.substr(9,2);
		var d1 = 0;
		for (i = 0; i < 9; i++) {
			d1 += c.charAt(i)*(10-i);
		}
		if (d1 == 0){
			return false;
		}
		d1 = 11 - (d1 % 11);
		if (d1 > 9) d1 = 0;
		if (dv.charAt(0) != d1) {
			return false;
		}
		d1 *= 2;
		for (i = 0; i < 9; i++) {
			d1 += c.charAt(i)*(11-i);
		}
		d1 = 11 - (d1 % 11);
		if (d1 > 9) d1 = 0;
		if (dv.charAt(1) != d1) {
			return false; 
		}	 
		return true;
}			


function setAssuntoDropDown() {
document.componentForm.contacttype.options[document.componentForm.contacttype.options.length] = new Option('Elogio','Elogio'); 
document.componentForm.contacttype.options[document.componentForm.contacttype.options.length] = new Option('Informação','Informação'); 
document.componentForm.contacttype.options[document.componentForm.contacttype.options.length] = new Option('Solicitação','Solicitação'); 
document.componentForm.contacttype.options[document.componentForm.contacttype.options.length] = new Option('Reclamação','Reclamação'); 
}

function setStateDropDown(){
document.componentForm.country.options.length=0;
document.componentForm.country.options[document.componentForm.country.options.length] = new Option('--- Selecione ---','');
document.componentForm.country.options[document.componentForm.country.options.length] = new Option('AC','AC');
document.componentForm.country.options[document.componentForm.country.options.length] = new Option('AL','AL'); 
document.componentForm.country.options[document.componentForm.country.options.length] = new Option('AM','AM');
document.componentForm.country.options[document.componentForm.country.options.length] = new Option('BA','BA');
document.componentForm.country.options[document.componentForm.country.options.length] = new Option('CE','CE');
document.componentForm.country.options[document.componentForm.country.options.length] = new Option('DF','DF');
document.componentForm.country.options[document.componentForm.country.options.length] = new Option('ES','ES');
document.componentForm.country.options[document.componentForm.country.options.length] = new Option('GO','GO');
document.componentForm.country.options[document.componentForm.country.options.length] = new Option('MA','MA');
document.componentForm.country.options[document.componentForm.country.options.length] = new Option('MG','MG');
document.componentForm.country.options[document.componentForm.country.options.length] = new Option('MS','MS');
document.componentForm.country.options[document.componentForm.country.options.length] = new Option('MT','MT');
document.componentForm.country.options[document.componentForm.country.options.length] = new Option('PA','PA');
document.componentForm.country.options[document.componentForm.country.options.length] = new Option('PB','PB');
document.componentForm.country.options[document.componentForm.country.options.length] = new Option('PE','PE');
document.componentForm.country.options[document.componentForm.country.options.length] = new Option('PI','PI');
document.componentForm.country.options[document.componentForm.country.options.length] = new Option('PR','PR');
document.componentForm.country.options[document.componentForm.country.options.length] = new Option('RJ','RJ');
document.componentForm.country.options[document.componentForm.country.options.length] = new Option('RN','RN');
document.componentForm.country.options[document.componentForm.country.options.length] = new Option('RO','RO'); 
document.componentForm.country.options[document.componentForm.country.options.length] = new Option('RR','RR');
document.componentForm.country.options[document.componentForm.country.options.length] = new Option('RS','RS');
document.componentForm.country.options[document.componentForm.country.options.length] = new Option('SC','SC');
document.componentForm.country.options[document.componentForm.country.options.length] = new Option('SE','SE');
document.componentForm.country.options[document.componentForm.country.options.length] = new Option('SP','SP');
document.componentForm.country.options[document.componentForm.country.options.length] = new Option('TO','TO');
document.componentForm.country.options[document.componentForm.country.options.length] = new Option('SC','SC');
}

function setOptions(chosen) {
document.componentForm.city.options.length=0;
if (chosen == "") {
   document.componentForm.city.disabled=true;
   document.componentForm.city.options[document.componentForm.city.options.length] = new Option('--- Selecione ---',''); 
}
if (chosen == "AC") {
	document.componentForm.city.disabled=false;
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('--- Selecione ---','');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Rio branco','Rio branco');
}
if (chosen == "AL") {
	document.componentForm.city.disabled=false;	
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('--- Selecione ---','');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Arapiraca','Arapiraca');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Maceio','Maceio');
}
if (chosen == "AM") {
	document.componentForm.city.disabled=false;	
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('--- Selecione ---','');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Manaus','Manaus');
}
if (chosen == "AP") {
	document.componentForm.city.disabled=false;	
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('--- Selecione ---','');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Macapa','Macapa');
}
if  (chosen=="BA") {
	document.componentForm.city.disabled=false;	
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('--- Selecione ---','');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Alagoinhas','Alagoinhas');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Barreiras','Barreiras');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Bom Jesus Da Lapa','Bom Jesus Da Lapa');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Esplanada','Esplanada');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Eunapolis','Eunapolis');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Feira De Santana','Feira De Santana');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Guanambi','Guanambi'); 
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Irece','Irece');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Itabuna','Itabuna');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Jacobina','Jacobina');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Luiz Eduardo Magalhaes','Luiz Eduardo Magalhaes');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Paulo Afonso','Paulo Afonso'); 
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Salvador','Salvador');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Senhor Do Bonfim','Senhor Do Bonfim');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Teixeira De Freitas','Teixeira De Freitas');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Valenca','Valenca');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Vitoria Da Conquista','Vitoria Da Conquista');
}
if  (chosen=="CE") {
	document.componentForm.city.disabled=false;	
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('--- Selecione ---','');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Fortaleza','Fortaleza');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Guaraciaba Do Norte','Guaraciaba Do Norte');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Iguatu','Iguatu');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Juazeiro Do Norte','Juazeiro Do Norte');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Quixada','Quixada');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Sobral','Sobral');
}
if  (chosen=="DF") {
	document.componentForm.city.disabled=false;	
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('--- Selecione ---','');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Brasilia','Brasilia');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Taguatinga sul','Taguatinga sul');  
}
if  (chosen=="ES") {
	document.componentForm.city.disabled=false;	
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('--- Selecione ---','');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Cachoeiro De Itapemirim','Cachoeiro De Itapemirim');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Colatina','Colatina');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Linhares','Linhares');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('São Mateus','São Mateus');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Serra','Serra');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Vila Velha','Vila Velha');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Vitoria','Vitoria');	
}
if  (chosen=="GO") {
	document.componentForm.city.disabled=false;	
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('--- Selecione ---','');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Anapolis','Anapolis');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Ceres','Ceres');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Goiania','Goiania');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Jatai','Jatai');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Mineiros','Mineiros');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Porangatu','Porangatu');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Quirinopolis','Quirinopolis');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Rio Verde','Rio Verde');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Vilhena','Vilhena');
}
if  (chosen=="MA") {
	document.componentForm.city.disabled=false;	
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('--- Selecione ---','');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Bacabal','Bacabal');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Caxias','Caxias');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Imperatriz','Imperatriz');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('São luis','São luis');
}
if  (chosen=="MG") {
	document.componentForm.city.disabled=false;	
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('--- Selecione ---','');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Alfenas','Alfenas');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Andradas','Andradas');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Araxa','Araxa');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Barbacena','Barbacena');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Belo Horizonte','Belo Horizonte');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Bom Despacho','Bom Despacho');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Caratinga','Caratinga');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Cataguases','Cataguases');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Conselheiro Lafaiete','Conselheiro Lafaiete');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Coronel Fabriciano','Coronel Fabriciano');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Curvelo','Curvelo');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Divinopolis','Divinopolis');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Formiga','Formiga');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Frutal','Frutal');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Governador Valadares','Governador Valadares');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Guaxupe','Guaxupe');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Ipatinga','Ipatinga');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Itabira','Itabira');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Itajuba','Itajuba');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Itauna','Itauna');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Ituiutaba','Ituiutaba');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Joao Monlevade','Joao Monlevade');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Juiz De Fora','Juiz De Fora');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Lavras','Lavras');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Manhuacu','Manhuacu');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Monte Carmelo','Monte Carmelo');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Montes Claros','Montes Claros');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Muriae','Muriae');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Ouro Fino','Ouro Fino');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Pará De Mnas','Pará De Mnas');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Passos','Passos');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Patos De Minas','Patos De Minas');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Patrocinio','Patrocinio');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Pirapora','Pirapora');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Poços De Caldas','Poços De Caldas');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Ponte Nova','Ponte Nova');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Pouso Alegre','Pouso Alegre');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('São João Del Rey','São João Del Rey');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('São Lourenço','São Lourenço');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('São Sebastião Do Paraíso','São Sebastião Do Paraíso');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Sete Lagoas','Sete Lagoas');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Teofilo Otoni','Teofilo Otoni');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Timóteo','Timóteo');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Três Corações','Três Corações');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Três Pontas','Três Pontas');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Ubá','Ubá');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Uberaba','Uberaba');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Uberlândia','Uberlândia');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Varginha','Varginha');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Viçosa','Viçosa');
}
if  (chosen=="MS") {
	document.componentForm.city.disabled=false;	
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('--- Selecione ---','');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Anastacio','Anastacio');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Campo Grande','Campo Grande');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Corumba','Corumba');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Coxim','Coxim');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Dourados','Dourados');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Ponta Pora','Ponta Pora');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Tres Lagoas','Tres Lagoas');
}
if  (chosen=="MT") {
	document.componentForm.city.disabled=false;	
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('--- Selecione ---','');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Barra Das Garças','Barra Das Garças');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Campo Novo Do Parecis','Campo Novo Do Parecis');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Cuiaba','Cuiaba');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Primavera Do Leste','Primavera Do Leste');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Rondonopolis','Rondonopolis');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Sinop','Sinop');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Sorriso','Sorriso');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Tangara Da Serra','Tangara Da Serra');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Varzea Grande','Varzea Grande');	
}
if  (chosen=="PA") {
	document.componentForm.city.disabled=false;	
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('--- Selecione ---','');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Altamira','Altamira');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Ananindeua','Ananindeua');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Belem','Belem');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Castanhal','Castanhal');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Maraba','Maraba');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Redencao','Redencao');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Santarem','Santarem');	
}
if  (chosen=="PB") {
	document.componentForm.city.disabled=false;	
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('--- Selecione ---','');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Bayeux','Bayeux');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Campina grande','Campina grande');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Joao pessoa','Joao pessoa');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Patos','Patos');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Sousa','Sousa');
 }
if  (chosen=="PE") {
	document.componentForm.city.disabled=false;	
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('--- Selecione ---','');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Arcoverde','Arcoverde');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Carpina','Carpina');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Caruaru','Caruaru');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Garanhuns','Garanhuns');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Gravata','Gravata');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Jaboatao Dos Guararapes','Jaboatao Dos Guararapes');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Petrolina','Petrolina');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Recife','Recife');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Serra Talhada','Serra Talhada');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Timbauba','Timbauba');	
}
if  (chosen=="PI") {
	document.componentForm.city.disabled=false;	
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('--- Selecione ---','');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Floriano','Floriano');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Parnaiba','Parnaiba');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Picos','Picos');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Teresina','Teresina');
}
if  (chosen=="PR")  {
	document.componentForm.city.disabled=false;	
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('--- Selecione ---','');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Arcoverde','Arcoverde');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Carpina','Carpina');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Caruaru','Caruaru');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Garanhuns','Garanhuns');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Gravata','Gravata');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Jaboatao Dos Guararapes','Jaboatao Dos Guararapes');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Recife','Recife');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Serra Talhada','Serra Talhada');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Timbauba','Timbauba'); ('Apucarana','Apucarana');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Arapongas','Arapongas');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Assis Chateaubriand','Assis Chateaubriand');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Campo Mourao','Campo Mourao');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Cascavel','Cascavel');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Castro','Castro');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Cianorte','Cianorte');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Curitiba','Curitiba');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Dois Vizinhos','Dois Vizinhos');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Foz Do Iguacu','Foz Do Iguacu');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Francisco Beltrao','Francisco Beltrao');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Goioere','Goioere');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Guarapuava','Guarapuava');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Irati','Irati');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Londrina','Londrina');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Marechal Candido Rondon','Marechal Candido Rondon');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Maringa','Maringa');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Palotina','Palotina');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Paranagua','Paranagua');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Paranavai','Paranavai');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Pato Branco','Pato Branco');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Ponta Grossa','Ponta Grossa');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Santo Antonio Da Platina','Santo Antonio Da Platina');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('São Jose Dos Pinhais','São Jose Dos Pinhais');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Toledo','Toledo');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Umuarama','Umuarama');
	
}
if  (chosen=="RJ")  {
	document.componentForm.city.disabled=false;	
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('--- Selecione ---','');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Fangra Dos Reis','Fangra Dos Reis');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Araruama','Araruama');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Barra Do Pirai','Barra Do Pirai');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Barra Mansa','Barra Mansa');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Cabo Frio','Cabo Frio');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Campos Dos Goytacazes','Campos Dos Goytacazes');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Duque De Caxias','Duque De Caxias');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Itaperuna','Itaperuna');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Macae','Macae');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Niteroi','Niteroi');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Nova Friburgo','Nova Friburgo');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Nova Iguacu','Nova Iguacu');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Petropolis','Petropolis');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Resende','Resende');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Rio Bonito','Rio Bonito');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Rio De Janeiro','Rio De Janeiro');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Santo Antonio De Padua','Santo Antonio De Padua');	
}
if  (chosen=="RN") {
	document.componentForm.city.disabled=false;	
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('--- Selecione ---','');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Mossoro','Mossoro');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Natal','Natal');	
}
if  (chosen=="RO") {
	document.componentForm.city.disabled=false;	
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('--- Selecione ---','');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Ariquemes','Ariquemes');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Cacoal','Cacoal');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Ji-paraná','Ji-paraná');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Porto velho','Porto velho');
}
if  (chosen=="RR") {
	document.componentForm.city.disabled=false;	
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('--- Selecione ---','');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Boa vista','Boa vista');
}
if  (chosen=="RS")  {
	document.componentForm.city.disabled=false;	
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('--- Selecione ---','');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Alegrete','Alegrete');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Bento Goncalves','Bento Goncalves');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Cachoeira Do Sul','Cachoeira Do Sul');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Canela','Canela');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Canoas','Canoas');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Carazinho','Carazinho');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Caxias Do Sul','Caxias Do Sul');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Encantado','Encantado');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Erechim','Erechim');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Farroupilha','Farroupilha');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Gravatai','Gravatai');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Ijui','Ijui');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Lajeado','Lajeado');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Montenegro','Montenegro');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Nova Prata','Nova Prata');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Novo Hamburgo','Novo Hamburgo');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Osorio','Osorio');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Passo Fundo','Passo Fundo');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Pelotas','Pelotas');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Porto Alegre','Porto Alegre');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Rio Grande','Rio Grande');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Santa Cruz Do Sul','Santa Cruz Do Sul');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Santa Maria','Santa Maria');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Santa Rosa','Santa Rosa');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Santiago','Santiago');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Santo Angelo','Santo Angelo');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('São Leopoldo','São Leopoldo');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Sapiranga','Sapiranga');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Soledade','Soledade');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Veranópolis','Veranópolis');	
}
if   (chosen=="SC")   {
	document.componentForm.city.disabled=false;	
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('--- Selecione ---','');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Ararangua','Ararangua');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Balneario Camboriu','Balneario Camboriu');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Blumenau','Blumenau');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Brusque','Brusque');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Cacador','Cacador');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Chapeco','Chapeco');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Concordia','Concordia');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Criciuma','Criciuma');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Curitibanos','Curitibanos');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Florianopolis','Florianopolis');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Itajai','Itajai');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Jaragua Do Sul','Jaragua Do Sul');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Joinville','Joinville');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Lages','Lages');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Mafra','Mafra');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Porto Uniao','Porto Uniao');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Rio Do Sul','Rio Do Sul');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('São Bento Do Sul','São Bento Do Sul');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('São Miguel Do Oeste','São Miguel Do Oeste');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Tubarao','Tubarao');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Videira','Videira');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Xanxere','Xanxere');	
}
if   (chosen=="SE")   {
	document.componentForm.city.disabled=false;	
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('--- Selecione ---','');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Aracaju','Aracaju');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Nossa sra do socorro','Nossa sra do socorro');
}
if   (chosen=="SP")   {
	document.componentForm.city.disabled=false;	
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('--- Selecione ---','');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Americana','Americana');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Amparo','Amparo');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Andradina','Andradina');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Aracatuba','Aracatuba');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Araraquara','Araraquara');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Araras','Araras');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Assis','Assis');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Atibaia','Atibaia');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Avare','Avare');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Bariri','Bariri');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Barretos','Barretos');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Batatais','Batatais');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Bauru','Bauru');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Bebedouro','Bebedouro');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Botucatu','Botucatu');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Braganca Paulista','Braganca Paulista');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Cacapava','Cacapava');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Campinas','Campinas');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Capivari','Capivari');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Caraguatatuba','Caraguatatuba');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Catanduva','Catanduva');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Cotia','Cotia');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Cruzeiro','Cruzeiro');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Diadema','Diadema');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Embu','Embu');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Fernandopolis','Fernandopolis');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Franca','Franca');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Franco Da Rocha','Franco Da Rocha');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Guaira','Guaira');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Guaratingueta','Guaratingueta');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Guaruja','Guaruja');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Guarulhos','Guarulhos');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Ibitinga','Ibitinga');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Indaiatuba','Indaiatuba');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Itapetininga','Itapetininga');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Itapeva','Itapeva');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Itapira','Itapira');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Itarare','Itarare');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Itatiba','Itatiba');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Itu','Itu');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Jaboticabal','Jaboticabal');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Jacarei','Jacarei');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Jau','Jau');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Jundiai','Jundiai');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Lencois Paulista','Lencois Paulista');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Limeira','Limeira');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Lins','Lins');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Lorena','Lorena');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Marilia','Marilia');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Matao','Matao');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Maua','Maua');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Mococa','Mococa');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Mogi Das Cruzes','Mogi Das Cruzes');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Mogi Guacu','Mogi Guacu');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Mogi Mirim','Mogi Mirim');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Monte Aprazivel','Monte Aprazivel');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Ourinhos','Ourinhos');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Paraguacu Paulista','Paraguacu Paulista');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Paulinia','Paulinia');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Penapolis','Penapolis');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Peruibe','Peruibe');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Pindamonhangaba','Pindamonhangaba');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Piracicaba','Piracicaba');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Piraju','Piraju');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Pirassununga','Pirassununga');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Presidente Prudente','Presidente Prudente');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Registro','Registro');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Ribeirao Preto','Ribeirao Preto');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Rio Claro','Rio Claro');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Santo Andre','Santo Andre');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Santos','Santos');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('São Bernardo Do Campo','São Bernardo Do Campo');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('São Caetano Do Sul','São Caetano Do Sul');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('São Carlos','São Carlos');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('São Joao Da Boa Vista','São Joao Da Boa Vista');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('São Joaquim Da Barra','São Joaquim Da Barra');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('São Jose Do Rio Pardo','São Jose Do Rio Pardo');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('São Jose Do Rio Preto','São Jose Do Rio Preto');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('São Jose Dos Campos','São Jose Dos Campos');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('São Paulo','São Paulo');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('São Roque','São Roque');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Sertãozinho','Sertãozinho');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Sorocaba','Sorocaba');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Sumaré','Sumaré');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Suzano','Suzano');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Tatuí','Tatuí');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Taubaté','Taubaté');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Vinhedo','Vinhedo');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Votuporanga','Votuporanga');
	
}
if (chosen == "TO") {
	document.componentForm.city.disabled=false;	
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('--- Selecione ---','');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Gurupi','Gurupi');
	document.componentForm.city.options[document.componentForm.city.options.length] = new Option('Palmas','Palmas');
}
}

function setProfessionOptions() {
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Não selecionado','Não selecionado');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Administrativo de Vendas','Administrativo de Vendas');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Administrativo Financeiro/Controladoria','Administrativo Financeiro/Controladoria');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Administrativo/Operacional','Administrativo/Operacional');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Agropecuária/Veterinária','Agropecuária/Veterinária');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Arquitetura/Urbanismo','Arquitetura/Urbanismo');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Artes','Artes');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Artes Gráficas','Artes Gráficas');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Atendimento ao Cliente/Costumer Service/Call Center','Atendimento ao Cliente/Costumer Service/Call Center');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Automação Industrial/Comercial','Automação Industrial/Comercial');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Aviação/Aeronáutica','Aviação/Aeronáutica');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Bancária','Bancária');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Biblioteconomia','Biblioteconomia');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Biotecnologia/Biomédicas/Bioquímica','Biotecnologia/Biomédicas/Bioquímica');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Comercial/Vendas','Comercial/Vendas');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Comércio Exterior/Trade','Comércio Exterior/Trade');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Comércio Varejista/Loja','Comércio Varejista/Loja');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Comunicação','Comunicação');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Construção Civil','Construção Civil');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Contabilidade','Contabilidade');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Departamento Pessoal','Departamento Pessoal');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Desenho Industrial','Desenho Industrial');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Diversas/Outras','Diversas/Outras');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Economia','Economia');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Educação/Ensino/Idiomas','Educação/Ensino/Idiomas');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Energia','Energia');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Enfermagem','Enfermagem');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Engenharia Agrimensor','Engenharia Agrimensor');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Engenharia Civil','Engenharia Civil');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Engenharia da Computação','Engenharia da Computação');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Engenharia de Alimentos','Engenharia de Alimentos');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Engenharia de Materiais','Engenharia de Materiais');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Engenharia de Meio Ambiente','Engenharia de Meio Ambiente');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Engenharia de Minas','Engenharia de Minas');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Engenharia de Produção/Industrial','Engenharia de Produção/Industrial');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Engenharia de Telecomunicações','Engenharia de Telecomunicações');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Engenharia Elétrica/Eletrônica','Engenharia Elétrica/Eletrônica');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Engenharia Mecânica/Mecatrônica','Engenharia Mecânica/Mecatrônica');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Engenharia Química','Engenharia Química');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Engenharia Têxtil','Engenharia Têxtil');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Engenharia/Outros','Engenharia/Outros');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Esportes/Educação Física','Esportes/Educação Física');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Estatística','Estatística');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Estética/Massagem','Estética/Massagem');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Exportação','Exportação');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Farmácia','Farmácia');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Financeira/Economia','Financeira/Economia');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Fisioterapia','Fisioterapia');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Fonoaudiologia','Fonoaudiologia');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Geólogo','Geólogo');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Gerência Geral','Gerência Geral');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Hotelaria/Turismo','Hotelaria/Turismo');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Importação','Importação');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Industrial','Industrial');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Informática','Informática');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Internet/E-Commerce/E-Business/Web','Internet/E-Commerce/E-Business/Web');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Jornalismo','Jornalismo');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Jurídica','Jurídica');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Logística','Logística');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Manutenção','Manutenção');

document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Marketing','Marketing');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Médico / Hospitalar','Médico / Hospitalar');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Meio Ambiente/Ecologia','Meio Ambiente/Ecologia');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Moda','Moda');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Nutrição','Nutrição');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Odontologia','Odontologia');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Operacional Industrial','Operacional Industrial');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Private Corporate Bank','Private Corporate Bank');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Psicologia Clínica/Hospitalar','Psicologia Clínica/Hospitalar');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Publicidade e Propaganda','Publicidade e Propaganda');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Qualidade','Qualidade');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Química','Química');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Recursos Humanos','Recursos Humanos');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Relações Internacionais','Relações Internacionais');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Relações Públicas','Relações Públicas');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Restaurante','Restaurante');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Secretárias','Secretárias');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Segurança do Trabalho','Segurança do Trabalho');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Segurança Patrimonial','Segurança Patrimonial');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Seguros','Seguros');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Serviço Social','Serviço Social');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Suprimentos/Logística','Suprimentos/Logística');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Técnica','Técnica');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Técnico em Laboratório Industrial','Técnico em Laboratório Industrial');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Técnico em Plástico','Técnico em Plástico');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Técnico-Comercial','Técnico-Comercial');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Tecnologia da Informação','Tecnologia da Informação');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Telecomunicações','Telecomunicações');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Telecomunicações/Teleprocessamento','Telecomunicações/Teleprocessamento');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Telemarketing','Telemarketing');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Tesouraria','Tesouraria');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Têxtil','Têxtil');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Tradutor/Intérprete','Tradutor/Intérprete');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Transportes','Transportes');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Outra','Outra');
}

function setVehiclesDropDown() {
document.componentForm.gmVehicleinfo.options.length=0;
document.componentForm.gmVehicleinfo.options[document.componentForm.gmVehicleinfo.options.length] = new Option('--- Selecione ---','');
document.componentForm.gmVehicleinfo.options[document.componentForm.gmVehicleinfo.options.length] = new Option('A10','A10');
document.componentForm.gmVehicleinfo.options[document.componentForm.gmVehicleinfo.options.length] = new Option('A20','A20');
document.componentForm.gmVehicleinfo.options[document.componentForm.gmVehicleinfo.options.length] = new Option('Agile','Agile');
document.componentForm.gmVehicleinfo.options[document.componentForm.gmVehicleinfo.options.length] = new Option('Astra','Astra');
document.componentForm.gmVehicleinfo.options[document.componentForm.gmVehicleinfo.options.length] = new Option('Blazer','Blazer');
document.componentForm.gmVehicleinfo.options[document.componentForm.gmVehicleinfo.options.length] = new Option('Bonanza','Bonanza');
document.componentForm.gmVehicleinfo.options[document.componentForm.gmVehicleinfo.options.length] = new Option('C20','C20');
document.componentForm.gmVehicleinfo.options[document.componentForm.gmVehicleinfo.options.length] = new Option('Calibra','Calibra');
document.componentForm.gmVehicleinfo.options[document.componentForm.gmVehicleinfo.options.length] = new Option('Caravan','Caravan');
document.componentForm.gmVehicleinfo.options[document.componentForm.gmVehicleinfo.options.length] = new Option('Celta','Celta');
document.componentForm.gmVehicleinfo.options[document.componentForm.gmVehicleinfo.options.length] = new Option('Chevette','Chevette');
document.componentForm.gmVehicleinfo.options[document.componentForm.gmVehicleinfo.options.length] = new Option('Chevy','Chevy');
document.componentForm.gmVehicleinfo.options[document.componentForm.gmVehicleinfo.options.length] = new Option('Corsa','Corsa');
document.componentForm.gmVehicleinfo.options[document.componentForm.gmVehicleinfo.options.length] = new Option('Captiva','Captiva');
document.componentForm.gmVehicleinfo.options[document.componentForm.gmVehicleinfo.options.length] = new Option('D20','D20');
document.componentForm.gmVehicleinfo.options[document.componentForm.gmVehicleinfo.options.length] = new Option('Grand Blazer','Grand Blazer');
document.componentForm.gmVehicleinfo.options[document.componentForm.gmVehicleinfo.options.length] = new Option('Ipanema','Ipanema');
document.componentForm.gmVehicleinfo.options[document.componentForm.gmVehicleinfo.options.length] = new Option('Kadet','Kadet');
document.componentForm.gmVehicleinfo.options[document.componentForm.gmVehicleinfo.options.length] = new Option('Lumina','Lumina');
document.componentForm.gmVehicleinfo.options[document.componentForm.gmVehicleinfo.options.length] = new Option('Marajo','Marajo');
document.componentForm.gmVehicleinfo.options[document.componentForm.gmVehicleinfo.options.length] = new Option('Meriva','Meriva');
document.componentForm.gmVehicleinfo.options[document.componentForm.gmVehicleinfo.options.length] = new Option('Monza','Monza');
document.componentForm.gmVehicleinfo.options[document.componentForm.gmVehicleinfo.options.length] = new Option('Omega','Omega');
document.componentForm.gmVehicleinfo.options[document.componentForm.gmVehicleinfo.options.length] = new Option('Opala','Opala');
document.componentForm.gmVehicleinfo.options[document.componentForm.gmVehicleinfo.options.length] = new Option('Pick Up Corsa','Pick Up Corsa');
document.componentForm.gmVehicleinfo.options[document.componentForm.gmVehicleinfo.options.length] = new Option('S10','S10');
document.componentForm.gmVehicleinfo.options[document.componentForm.gmVehicleinfo.options.length] = new Option('Saab','Saab');
document.componentForm.gmVehicleinfo.options[document.componentForm.gmVehicleinfo.options.length] = new Option('Silverado','Silverado');
document.componentForm.gmVehicleinfo.options[document.componentForm.gmVehicleinfo.options.length] = new Option('Space Van / Traffic','Space Van / Traffic');
document.componentForm.gmVehicleinfo.options[document.componentForm.gmVehicleinfo.options.length] = new Option('Suprema','Suprema');
document.componentForm.gmVehicleinfo.options[document.componentForm.gmVehicleinfo.options.length] = new Option('Tigra','Tigra');
document.componentForm.gmVehicleinfo.options[document.componentForm.gmVehicleinfo.options.length] = new Option('Tracker','Tracker');
document.componentForm.gmVehicleinfo.options[document.componentForm.gmVehicleinfo.options.length] = new Option('Vectra','Vectra');
document.componentForm.gmVehicleinfo.options[document.componentForm.gmVehicleinfo.options.length] = new Option('Veraneio','Veraneio');
document.componentForm.gmVehicleinfo.options[document.componentForm.gmVehicleinfo.options.length] = new Option('Zafira','Zafira');
document.componentForm.gmVehicleinfo.options[document.componentForm.gmVehicleinfo.options.length] = new Option('Montana','Montana');
document.componentForm.gmVehicleinfo.options[document.componentForm.gmVehicleinfo.options.length] = new Option('Classic','Classic');
document.componentForm.gmVehicleinfo.options[document.componentForm.gmVehicleinfo.options.length] = new Option('Prisma','Prisma');
}
function setModelYearDropDown() {
document.componentForm.fax.options[document.componentForm.fax.options.length] = new Option('2011','2011');
document.componentForm.fax.options[document.componentForm.fax.options.length] = new Option('2010','2010');
document.componentForm.fax.options[document.componentForm.fax.options.length] = new Option('2009','2009');
document.componentForm.fax.options[document.componentForm.fax.options.length] = new Option('2008','2008');
document.componentForm.fax.options[document.componentForm.fax.options.length] = new Option('2007','2007');
document.componentForm.fax.options[document.componentForm.fax.options.length] = new Option('2006','2006');
document.componentForm.fax.options[document.componentForm.fax.options.length] = new Option('2005','2005');
document.componentForm.fax.options[document.componentForm.fax.options.length] = new Option('2004','2004');
document.componentForm.fax.options[document.componentForm.fax.options.length] = new Option('2003','2003');
document.componentForm.fax.options[document.componentForm.fax.options.length] = new Option('2002','2002');
document.componentForm.fax.options[document.componentForm.fax.options.length] = new Option('2001','2001');
document.componentForm.fax.options[document.componentForm.fax.options.length] = new Option('2000','2000');
document.componentForm.fax.options[document.componentForm.fax.options.length] = new Option('1999','1999');
document.componentForm.fax.options[document.componentForm.fax.options.length] = new Option('1998','1998');
document.componentForm.fax.options[document.componentForm.fax.options.length] = new Option('1997','1997');
document.componentForm.fax.options[document.componentForm.fax.options.length] = new Option('1996','1996');
document.componentForm.fax.options[document.componentForm.fax.options.length] = new Option('1995','1995');
document.componentForm.fax.options[document.componentForm.fax.options.length] = new Option('1994','1994');
document.componentForm.fax.options[document.componentForm.fax.options.length] = new Option('1993','1993');
document.componentForm.fax.options[document.componentForm.fax.options.length] = new Option('1992','1992');
document.componentForm.fax.options[document.componentForm.fax.options.length] = new Option('1991','1991');
document.componentForm.fax.options[document.componentForm.fax.options.length] = new Option('1990','1990');
document.componentForm.fax.options[document.componentForm.fax.options.length] = new Option('1989','1989');
document.componentForm.fax.options[document.componentForm.fax.options.length] = new Option('1988','1988');
document.componentForm.fax.options[document.componentForm.fax.options.length] = new Option('1987','1987');
document.componentForm.fax.options[document.componentForm.fax.options.length] = new Option('1986','1986');
document.componentForm.fax.options[document.componentForm.fax.options.length] = new Option('1985','1985');
document.componentForm.fax.options[document.componentForm.fax.options.length] = new Option('1984','1984');
document.componentForm.fax.options[document.componentForm.fax.options.length] = new Option('1983','1983');
document.componentForm.fax.options[document.componentForm.fax.options.length] = new Option('1982','1982');
document.componentForm.fax.options[document.componentForm.fax.options.length] = new Option('1981','1981');
document.componentForm.fax.options[document.componentForm.fax.options.length] = new Option('1980','1980');
document.componentForm.fax.options[document.componentForm.fax.options.length] = new Option('1979','1979');
document.componentForm.fax.options[document.componentForm.fax.options.length] = new Option('1978','1978');
document.componentForm.fax.options[document.componentForm.fax.options.length] = new Option('1977','1977');
document.componentForm.fax.options[document.componentForm.fax.options.length] = new Option('1976','1976');
document.componentForm.fax.options[document.componentForm.fax.options.length] = new Option('1975','1975');
document.componentForm.fax.options[document.componentForm.fax.options.length] = new Option('1974','1974');
document.componentForm.fax.options[document.componentForm.fax.options.length] = new Option('1973','1973');
document.componentForm.fax.options[document.componentForm.fax.options.length] = new Option('1972','1972');
document.componentForm.fax.options[document.componentForm.fax.options.length] = new Option('1971','1971');
document.componentForm.fax.options[document.componentForm.fax.options.length] = new Option('1970','1970');
}

function setProfessionOptions() {
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Não selecionado','Não selecionado');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Administrativo de Vendas','Administrativo de Vendas');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Administrativo Financeiro/Controladoria','Administrativo Financeiro/Controladoria');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Administrativo/Operacional','Administrativo/Operacional');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Agropecuária/Veterinária','Agropecuária/Veterinária');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Arquitetura/Urbanismo','Arquitetura/Urbanismo');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Artes','Artes');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Artes Gráficas','Artes Gráficas');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Atendimento ao Cliente/Costumer Service/Call Center','Atendimento ao Cliente/Costumer Service/Call Center');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Automação Industrial/Comercial','Automação Industrial/Comercial');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Aviação/Aeronáutica','Aviação/Aeronáutica');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Bancária','Bancária');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Biblioteconomia','Biblioteconomia');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Biotecnologia/Biomédicas/Bioquímica','Biotecnologia/Biomédicas/Bioquímica');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Comercial/Vendas','Comercial/Vendas');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Comércio Exterior/Trade','Comércio Exterior/Trade');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Comércio Varejista/Loja','Comércio Varejista/Loja');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Comunicação','Comunicação');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Construção Civil','Construção Civil');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Contabilidade','Contabilidade');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Departamento Pessoal','Departamento Pessoal');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Desenho Industrial','Desenho Industrial');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Diversas/Outras','Diversas/Outras');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Economia','Economia');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Educação/Ensino/Idiomas','Educação/Ensino/Idiomas');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Energia','Energia');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Enfermagem','Enfermagem');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Engenharia Agrimensor','Engenharia Agrimensor');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Engenharia Civil','Engenharia Civil');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Engenharia da Computação','Engenharia da Computação');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Engenharia de Alimentos','Engenharia de Alimentos');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Engenharia de Materiais','Engenharia de Materiais');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Engenharia de Meio Ambiente','Engenharia de Meio Ambiente');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Engenharia de Minas','Engenharia de Minas');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Engenharia de Produção/Industrial','Engenharia de Produção/Industrial');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Engenharia de Telecomunicações','Engenharia de Telecomunicações');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Engenharia Elétrica/Eletrônica','Engenharia Elétrica/Eletrônica');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Engenharia Mecânica/Mecatrônica','Engenharia Mecânica/Mecatrônica');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Engenharia Química','Engenharia Química');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Engenharia Têxtil','Engenharia Têxtil');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Engenharia/Outros','Engenharia/Outros');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Esportes/Educação Física','Esportes/Educação Física');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Estatística','Estatística');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Estética/Massagem','Estética/Massagem');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Exportação','Exportação');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Farmácia','Farmácia');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Financeira/Economia','Financeira/Economia');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Fisioterapia','Fisioterapia');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Fonoaudiologia','Fonoaudiologia');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Geólogo','Geólogo');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Gerência Geral','Gerência Geral');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Hotelaria/Turismo','Hotelaria/Turismo');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Importação','Importação');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Industrial','Industrial');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Informática','Informática');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Internet/E-Commerce/E-Business/Web','Internet/E-Commerce/E-Business/Web');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Jornalismo','Jornalismo');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Jurídica','Jurídica');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Logística','Logística');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Manutenção','Manutenção');

document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Marketing','Marketing');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Médico / Hospitalar','Médico / Hospitalar');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Meio Ambiente/Ecologia','Meio Ambiente/Ecologia');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Moda','Moda');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Nutrição','Nutrição');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Odontologia','Odontologia');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Operacional Industrial','Operacional Industrial');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Private Corporate Bank','Private Corporate Bank');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Psicologia Clínica/Hospitalar','Psicologia Clínica/Hospitalar');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Publicidade e Propaganda','Publicidade e Propaganda');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Qualidade','Qualidade');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Química','Química');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Recursos Humanos','Recursos Humanos');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Relações Internacionais','Relações Internacionais');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Relações Públicas','Relações Públicas');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Restaurante','Restaurante');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Secretárias','Secretárias');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Segurança do Trabalho','Segurança do Trabalho');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Segurança Patrimonial','Segurança Patrimonial');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Seguros','Seguros');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Serviço Social','Serviço Social');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Suprimentos/Logística','Suprimentos/Logística');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Técnica','Técnica');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Técnico em Laboratório Industrial','Técnico em Laboratório Industrial');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Técnico em Plástico','Técnico em Plástico');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Técnico-Comercial','Técnico-Comercial');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Tecnologia da Informação','Tecnologia da Informação');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Telecomunicações','Telecomunicações');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Telecomunicações/Teleprocessamento','Telecomunicações/Teleprocessamento');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Telemarketing','Telemarketing');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Tesouraria','Tesouraria');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Têxtil','Têxtil');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Tradutor/Intérprete','Tradutor/Intérprete');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Transportes','Transportes');
document.componentForm.jobTitle.options[document.componentForm.jobTitle.options.length] = new Option('Outra','Outra');
}

function setDealerOptions() {
document.componentForm.lastName.options.length=0;
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('--- Selecione ---','');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('A. SILVA','A. SILVA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('ABA MOTORS COTIA','ABA MOTORS COTIA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('ABA MOTORS EMBU','ABA MOTORS EMBU');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('ABSOLUTA','ABSOLUTA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('ABSOLUTA MAR','ABSOLUTA MAR');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('ABSOLUTA SANTOS','ABSOLUTA SANTOS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('ACCIOLY DP','ACCIOLY DP');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('ACCIOLY DP','ACCIOLY DP');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('ACCIOLY ABC DP','ACCIOLY ABC DP');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('ACCIOLY RJ DP','ACCIOLY RJ DP');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('ADARA','ADARA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('ADARA JARDIM','ADARA JARDIM');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('ALENCAUTO','ALENCAUTO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('ALENCAUTO FLORIANO','ALENCAUTO FLORIANO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('AMANTINI','AMANTINI');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('AMÉRICAS BARRA','AMÉRICAS BARRA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('AMG CURITIBANOS','AMG CURITIBANOS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('ANHEMBI TUCURUVI','ANHEMBI TUCURUVI');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('ANTARES','ANTARES');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('APRAVEL','APRAVEL');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('APUCARANA','APUCARANA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('APUCARANA IVAIPORÃ','APUCARANA IVAIPORÃ');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('APV','APV');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('ARTVEL','ARTVEL');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('ARTVEL ITAPIRA','ARTVEL ITAPIRA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('ARTVEL MOGI MIRIM','ARTVEL MOGI MIRIM');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('ARTVEL SUL','ARTVEL SUL');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('ARTVEL SUL','ARTVEL SUL');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('ARTVEL SUL MONTE SIÃO','ARTVEL SUL MONTE SIÃO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('ASE MOTORS','ASE MOTORS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('ATIVA','ATIVA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('ATLAS BEBEDOURO','ATLAS BEBEDOURO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('ATLAS JABOTICABAL','ATLAS JABOTICABAL');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('ATLAS MONTE ALTO','ATLAS MONTE ALTO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('ATLAS OLÍMPIA','ATLAS OLÍMPIA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('ATLAS S. J. DA BARRA','ATLAS S. J. DA BARRA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('ATLAS TAQUARITINGA','ATLAS TAQUARITINGA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('AUTO CANDASP','AUTO CANDASP');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('AUTO CANDASP ARAPONGAS','AUTO CANDASP ARAPONGAS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('AUTO CANDASP ROLÂNDIA','AUTO CANDASP ROLÂNDIA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('AUTO CANELA','AUTO CANELA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('AUTO IMPERIAL','AUTO IMPERIAL');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('AUTO IMPERIAL ITAIPAVA','AUTO IMPERIAL ITAIPAVA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('AUTO MECÂNICA','AUTO MECÂNICA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('AUTO MECÂNICA FRAIBURGO','AUTO MECÂNICA FRAIBURGO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('AUTO MECÂNICA GERAL','AUTO MECÂNICA GERAL');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('AUTO PASSOS','AUTO PASSOS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('AUTO VANESSA','AUTO VANESSA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('AUTOASA','AUTOASA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('AUTOASA PENEDO','AUTOASA PENEDO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('AUTOASA S. MIGUEL CAMPOS','AUTOASA S. MIGUEL CAMPOS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('AUTOBELO CARPINA','AUTOBELO CARPINA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('AUTOCLÃ','AUTOCLÃ');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('AUTOESTE','AUTOESTE');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('AUTOESTE PRESIDENTE VENCESLAU','AUTOESTE PRESIDENTE VENCESLAU');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('AUTOGERAIS','AUTOGERAIS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('AUTOGERAIS SÃO LOURENÇO','AUTOGERAIS SÃO LOURENÇO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('AUTOLAGOS','AUTOLAGOS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('AUTOMEC','AUTOMEC');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('AUTOMEC FRANCA','AUTOMEC FRANCA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('AUTOMEC INDAIATUBA','AUTOMEC INDAIATUBA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('AUTOMEC ITU','AUTOMEC ITU');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('AUTOMEC TATUÍ','AUTOMEC TATUÍ');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('AUTONORTE','AUTONORTE');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('AUTONORTE  CURVELO','AUTONORTE  CURVELO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('AUTONORTE PIRAPORA','AUTONORTE PIRAPORA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('AUTONORTE PIRAPORA','AUTONORTE PIRAPORA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('AUTONUNES','AUTONUNES');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('AUTONUNES BOA VIAGEM','AUTONUNES BOA VIAGEM');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('AUTOPINDA','AUTOPINDA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('AUTORIO','AUTORIO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('AUTOVIA','AUTOVIA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('AUTOVIL','AUTOVIL');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('AUTUS','AUTUS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('AUTUS BRASIL','AUTUS BRASIL');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('B.G.','B.G.');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('BAGÉ','BAGÉ');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('BAGÉ SÃO GABRIEL','BAGÉ SÃO GABRIEL');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('BAVEP','BAVEP');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('BAVEP FRUTAL','BAVEP FRUTAL');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('BAVEP GUAÍRA','BAVEP GUAÍRA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('BAVEPEL BACABAL','BAVEPEL BACABAL');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('BERAUTO','BERAUTO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('BOATERRA','BOATERRA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('BRAGA','BRAGA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('BRAZÃO','BRAZÃO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('BRAZMOTORS','BRAZMOTORS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('BREGOMAR','BREGOMAR');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('BREGOMAR MARAVILHA','BREGOMAR MARAVILHA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('BROZAUTO','BROZAUTO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('BROZAUTO','BROZAUTO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CALTABIANO','CALTABIANO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CALTABIANO R. CLÉLIA','CALTABIANO R. CLÉLIA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CAMILA','CAMILA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CAMILA SANTOS NOVO HORIZONTE','CAMILA SANTOS NOVO HORIZONTE');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CANADÁ JANAÚBA','CANADÁ JANAÚBA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CANADÁ PARNAÍBA','CANADÁ PARNAÍBA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CANADÁ VEÍCULOS','CANADÁ VEÍCULOS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CAPRI  -  CALDAS NOVAS','CAPRI  -  CALDAS NOVAS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CAPRI VEÍCULOS','CAPRI VEÍCULOS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CAPRICHO CAÇAPAVA','CAPRICHO CAÇAPAVA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CAPRICHO JACAREÍ','CAPRICHO JACAREÍ');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CAPRICHO S. JOSÉ CAMPOS','CAPRICHO S. JOSÉ CAMPOS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CARAZINHO','CARAZINHO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CARAZINHO FREDERICO WEST.','CARAZINHO FREDERICO WEST.');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CARAZINHO SARANDI','CARAZINHO SARANDI');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CARFÁCIL','CARFÁCIL');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CARFÁCIL BARRA DO PIRAÍ','CARFÁCIL BARRA DO PIRAÍ');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CARLOS CUNHA','CARLOS CUNHA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CARLOS CUNHA LIMEIRA','CARLOS CUNHA LIMEIRA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CARLOS CUNHA PAULÍNIA','CARLOS CUNHA PAULÍNIA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CARRERA','CARRERA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CARRERA','CARRERA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CARRERA AV. BRASIL','CARRERA AV. BRASIL');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CARRERA (AV. REBOUÇAS)','CARRERA AV. REBOUÇAS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CARRERA (CENTRO - RIO)','CARRERA (CENTRO - RIO)');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CARRERA (Oficina)','CARRERA (Oficina)');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CARRERA (VILA LEOPOLDINA)','CARRERA (VILA LEOPOLDINA)');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CARRERA BUTANTÃ','CARRERA BUTANTÃ');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CARRERA CIPAN','CARRERA CIPAN');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CARRERA SANTOS','CARRERA SANTOS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CARTEL','CARTEL');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CASA CRUZEIRO','CASA CRUZEIRO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CASA CRUZEIRO ARAXÁ','CASA CRUZEIRO ARAXÁ');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CAUÊ VEÍCULOS','CAUÊ VEÍCULOS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CAVEL PATOS DE MINAS','CAVEL PATOS DE MINAS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CAVEL PIRES DO RIO','CAVEL PIRES DO RIO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CAXANGA RECIFE','CAXANGA RECIFE');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CCV','CCV');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CCV BATEL','CCV BATEL');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CHAMPAGNAT','CHAMPAGNAT');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CHEMARAUTO','CHEMARAUTO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CHEMARAUTO','CHEMARAUTO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CHEMARAUTO CRUZEIRO','CHEMARAUTO CRUZEIRO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CHEMARAUTO LORENA','CHEMARAUTO LORENA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CHEVEL BOM DESPACHO','CHEVEL BOM DESPACHO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CHEVEL DIVINOPOLIS','CHEVEL DIVINOPOLIS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CHEVEL ITAÚNA','CHEVEL ITAÚNA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CHEVEL LAVRAS','CHEVEL LAVRAS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CHEVEL OLIVEIRA','CHEVEL OLIVEIRA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CHEVEL PARÁ DE MINAS','CHEVEL PARÁ DE MINAS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CIAUTO','CIAUTO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CIAUTO NOVA VENECIA','CIAUTO NOVA VENECIA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CICAL GOIÂNIA','CICAL GOIÂNIA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CICAL RP','CICAL RP');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CIPAUTO','CIPAUTO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CIPAUTO CAMPO MOURÃO','CIPAUTO CAMPO MOURÃO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CIPAUTO PONTA GROSSA','CIPAUTO PONTA GROSSA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CIVE','CIVE');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CIVE TRÊS CORAÇÕES','CIVE TRÊS CORAÇÕES');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CIVE TRÊS PONTAS','CIVE TRÊS PONTAS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CIVESA','CIVESA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CIVESA LEME','CIVESA LEME');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CIVESA RIO CLARO','CIVESA RIO CLARO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CODISMAN FORTALEZA','CODISMAN FORTALEZA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CODISMAN SALVADOR','CODISMAN SALVADOR');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CODIVE VALINHOS','CODIVE VALINHOS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('COFASA','COFASA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('COLIVE','COLIVE');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('COLUMBIA EUNÁPOLIS','COLUMBIA EUNÁPOLIS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('COLUMBIA ITABUNA','COLUMBIA ITABUNA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('COLUMBIA TEIXEIRA FREITAS','COLUMBIA TEIXEIRA FREITAS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('COMERCIAL GURUPI','COMERCIAL GURUPI');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('COMETA','COMETA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('COMETA SANTA HELENA','COMETA SANTA HELENA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('COMVESA','COMVESA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CONCORDE','CONCORDE');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CONCORDE ARACAJÚ','CONCORDE ARACAJÚ');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CONORA ANGRA','CONORA ANGRA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CONORA RESENDE','CONORA RESENDE');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CONTORNO','CONTORNO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('COTAC','COTAC');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('COTAC ARUJÁ','COTAC ARUJÁ');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('COVEL','COVEL');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('COVIBRÁS','COVIBRÁS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('COVIBRAS ANTONIO PRADO','COVIBRAS ANTONIO PRADO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CVC','CVC');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CVG ITABIRA','CVG ITABIRA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CVG JOÃO MONLEVADE','CVG JOÃO MONLEVADE');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('CYRO CAVALCANTI','CYRO CAVALCANTI');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('DAFONTE CARUARU','DAFONTE CARUARU');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('DAFONTE FORTALEZA','DAFONTE FORTALEZA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('DAFONTE GRAVATÁ','DAFONTE GRAVATÁ');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('DAFONTE SOBRAL','DAFONTE SOBRAL');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('DAHRUJ AMERICANA','DAHRUJ AMERICANA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('DAKARA','DAKARA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('DAKARA FERNANDÓPOLIS','DAKARA FERNANDÓPOLIS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('DAKARA JALES','DAKARA JALES');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('DALCAR COHAB','DALCAR COHAB');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('DALCAR COHAMA','DALCAR COHAMA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('DALCAR SANTA INÊS','DALCAR SANTA INÊS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('DALCAR VEÍCULOS','DALCAR VEÍCULOS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('DÃO SILVEIRA','DÃO SILVEIRA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('DICAPE DP','DICAPE DP');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('DIFERENTE - BARRA DO GARÇAS','DIFERENTE - BARRA DO GARÇAS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('DIFERENTE - PRIMAVERA DO LESTE','DIFERENTE - PRIMAVERA DO LESTE');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('DIG','DIG');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('DIRIJA BARRA DA TIJUCA','DIRIJA BARRA DA TIJUCA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('DIRIJA CAMPINHO','DIRIJA CAMPINHO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('DIRIJA CENTRO','DIRIJA CENTRO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('DIRIJA JACAREPAGUÁ','DIRIJA JACAREPAGUÁ');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('DIRIJA NITERÓI','DIRIJA NITERÓI');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('DIRIJA TIJUCA','DIRIJA TIJUCA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('DISBRASA','DISBRASA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('DISBRAVA','DISBRAVA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('DIVELPA','DIVELPA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('DIVISA','DIVISA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('DIVISA SÃO MIGUEL','DIVISA SÃO MIGUEL');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('DPR DP','DPR DP');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('DPR BH DP','DPR BH DP');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('DUTRA','DUTRA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('ELDORADO','ELDORADO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('EMMENDORFER','EMMENDORFER');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('ENERGIA','ENERGIA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('ESPACIAL','ESPACIAL');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('EUROCARR','EUROCARR');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('FÁCIL CASTANHAL','FÁCIL CASTANHAL');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('FILADELFIA DP','FILADELFIA DP');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('FRANCOVEL','FRANCOVEL');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('FRUTOSDIAS','FRUTOSDIAS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('G R A ITÁPOLIS','G R A ITÁPOLIS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('G.R.A.','G.R.A.');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('G.R.A.','G.R.A.');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('GALILÉIA JATAÍ','GALILÉIA JATAÍ');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('GALILEIA JUIZ DE FORA','GALILEIA JUIZ DE FORA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('GALILÉIA MINEIROS','GALILÉIA MINEIROS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('GALILÉIA QUIRINÓPOLIS','GALILÉIA QUIRINÓPOLIS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('GALILÉIA TRÊS RIOS','GALILÉIA TRÊS RIOS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('GARCIA VEÍCULOS','GARCIA VEÍCULOS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('GLOBO','GLOBO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('GOYAZ AUTOMÓVEIS','GOYAZ AUTOMÓVEIS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('GRA MATÃO','GRA MATÃO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('GRACIANO','GRACIANO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('GRAMARCA CACERES','GRAMARCA CACERES');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('GRAMARCA VÁRZEA GRANDE','GRAMARCA VÁRZEA GRANDE');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('GRAN PARK','GRAN PARK');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('GRAN PARK SEMINARIO','GRAN PARK SEMINARIO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('GRANDE BAHIA','GRANDE BAHIA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('GRANDE BAHIA','GRANDE BAHIA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('GRANDE MINAS','GRANDE MINAS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('GRANDE MINAS PAMPULHA','GRANDE MINAS PAMPULHA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('GRANDE RIO','GRANDE RIO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('GRANDE RIO ARARIPINA','GRANDE RIO ARARIPINA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('GRANDSTAR','GRANDSTAR');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('GRANLESTE','GRANLESTE');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('GRANLESTE','GRANLESTE');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('GREEN MACAÉ','GREEN MACAÉ');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('GUANABARA','GUANABARA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('GUANABARA PELOTAS','GUANABARA PELOTAS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('GUARÁ','GUARÁ');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('GUARÁ CENTRO','GUARÁ CENTRO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('GUARÁ IRATI','GUARÁ IRATI');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('GUIAUTO','GUIAUTO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('GUIAUTO CEL. FABRICIANO','GUIAUTO CEL. FABRICIANO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('GUIAUTO TIMÓTEO','GUIAUTO TIMÓTEO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('GURUPI TOCANTINS','GURUPI TOCANTINS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('IMPORTADORA','IMPORTADORA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('INTERLAGOS','INTERLAGOS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('INTERLAGOS ASSIS CHATEAU.','INTERLAGOS ASSIS CHATEAU.');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('INTERLAGOS GUAÍRA','INTERLAGOS GUAÍRA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('IRMÃOS ANDRETTA','IRMÃOS ANDRETTA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('IRMÃOS FERRETI','IRMÃOS FERRETI');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('IRMÃOS TOKUDA OA','IRMÃOS TOKUDA OA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('ITACOLOMY','ITACOLOMY');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('ITACOLOMY','ITACOLOMY');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('ITACOLOMY CONSOLAÇÃO','ITACOLOMY CONSOLAÇÃO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('ITAJURÚ','ITAJURÚ');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('ITANS','ITANS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('ITAVEL','ITAVEL');

document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('ITORORÓ','ITORORÓ');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('ITORORÓ BRAS','ITORORÓ BRAS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('ITORORÓ TANCREDO','ITORORÓ TANCREDO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('J A. SPOHR VENÂNCIO AIRES','J A. SPOHR VENÂNCIO AIRES');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('J. A. SPOHR','J. A. SPOHR');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('J. DIONÍSIO','J. DIONÍSIO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('J. MELLO','J. MELLO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('JACOB BIEZUS','JACOB BIEZUS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('JARDINE','JARDINE');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('JARDINE CACHOEIRA DO SUL','JARDINE CACHOEIRA DO SUL');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('JAVEP BARRA BONITA','JAVEP BARRA BONITA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('JAVEP GARÇA','JAVEP GARÇA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('JAVEP JAÚ','JAVEP JAÚ');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('JAVEP MARÍLIA','JAVEP MARÍLIA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('JAVEP SÃO CARLOS','JAVEP SÃO CARLOS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('JORLAN BH','JORLAN BH');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('JORLAN BRASÍLIA','JORLAN BRASÍLIA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('JORLAN BRASÍLIA','JORLAN BRASÍLIA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('JORLAN GOIÂNIA','JORLAN GOIÂNIA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('JOSÉ DOS SANTOS BARBACENA','JOSÉ DOS SANTOS BARBACENA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('JOSÉ DOS SANTOS UBÁ','JOSÉ DOS SANTOS UBÁ');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('JOSÉ SANTOS S. J. DEL REY','JOSÉ SANTOS S. J. DEL REY');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('JUARY','JUARY');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('JUARY TUCUMÃ','JUARY TUCUMÃ');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('JUGASA','JUGASA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('KOENTOPP','KOENTOPP');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('KOLINA ARARANGUAENSE','KOLINA ARARANGUAENSE');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('KOLINA TUBARÃO','KOLINA TUBARÃO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('KRAUTOP','KRAUTOP');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('KUGLER','KUGLER');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('LAGOA','LAGOA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('LEON HEIMER (DP)','LEON HEIMER (DP)');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('LEVESA','LEVESA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('LIBAN','LIBAN');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('LÍDER','LÍDER');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('LÍDER B. H.','LÍDER B. H.');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('LIDER CATAGUASES','LIDER CATAGUASES');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('LIDER LEOPOLDINA','LIDER LEOPOLDINA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('LIDER MURIAÉ','LIDER MURIAÉ');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('LIRAUTO','LIRAUTO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('LUCHINI','LUCHINI');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('LUCHINI BRAGANÇA PAULISTA','LUCHINI BRAGANÇA PAULISTA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('LUCHINI ITATIBA','LUCHINI ITATIBA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('LUCIVEL NORTE','LUCIVEL NORTE');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('LUCVEL','LUCVEL');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('LUCVEL ALÉM PARAÍBA','LUCVEL ALÉM PARAÍBA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('MANGABEIRAS','MANGABEIRAS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('MARAMBAIA','MARAMBAIA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('MAVESA','MAVESA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('MCV','MCV');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('MEKA VEÍCULOS','MEKA VEÍCULOS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('METROCAR','METROCAR');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('METRONORTE','METRONORTE');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('METRONORTE VILA IPIRANGA','METRONORTE VILA IPIRANGA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('METROSUL','METROSUL');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('METROSUL CURITIBA','METROSUL CURITIBA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('METROSUL PARANAGUÁ','METROSUL PARANAGUÁ');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('METZLER','METZLER');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('MOCOVEL','MOCOVEL');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('MONTE SINAI','MONTE SINAI');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('MORANDINI','MORANDINI');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('MORANDINI CENTRO','MORANDINI CENTRO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('MOTOR 3','MOTOR 3');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('MOTOR PLACE','MOTOR PLACE');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('MULTICAR','MULTICAR');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('MULTICAR GOV. VALADARES','MULTICAR GOV. VALADARES');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('NATAL','NATAL');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('NATAL','NATAL');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('NAVAJO','NAVAJO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('NICOLA','NICOLA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('NICOLA ALEGRETE','NICOLA ALEGRETE');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('NICOLA ITAQUI','NICOLA ITAQUI');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('NICOLA SANTO ANGELO','NICOLA SANTO ANGELO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('NICOLA SÃO BORJA','NICOLA SÃO BORJA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('NICOLA URUGUAIANA','NICOLA URUGUAIANA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('NICOLA VEÍCULOS','NICOLA VEÍCULOS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('NICOLA VEÍCULOS','NICOLA VEÍCULOS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('NOVA','NOVA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('NOVA CAMPO BELO','NOVA CAMPO BELO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('NOVA DAHRUJ','NOVA DAHRUJ');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('NOVA ERA TIETÊ','NOVA ERA TIETÊ');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('NOVA ITAIM','NOVA ITAIM');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('NOVA ITAIM','NOVA ITAIM');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('NOVA JOÃO DIAS','NOVA JOÃO DIAS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('NOVA RIO PRETO','NOVA RIO PRETO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('NOVA RIO PRETO','NOVA RIO PRETO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('NOVA TATUAPÉ','NOVA TATUAPÉ');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('NOVA VITÓRIA','NOVA VITÓRIA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('NOVO RIO','NOVO RIO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('NOVO RIO GUARAÍ','NOVO RIO GUARAÍ');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('NOVO RUMO','NOVO RUMO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('OESTE','OESTE');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('OESTE CAMPO NOVO PARECIS','OESTE CAMPO NOVO PARECIS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('ORCA BH','ORCA BH');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('ORCA BRASÍLIA','ORCA BRASÍLIA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('ORGANIZAÇÃO TRIÂNGULO','ORGANIZAÇÃO TRIÂNGULO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('OURICAR','OURICAR');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('OURICAR STA. CRUZ DO RIO PARDO','OURICAR STA. CRUZ DO RIO PARDO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('OURICAR NORTE','OURICAR NORTE');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('OURICAR NORTE','OURICAR NORTE');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('OURIPAR','OURIPAR');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('OURIPAR PARAGUAÇU','OURIPAR PARAGUAÇU');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('PALAZZO','PALAZZO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('PALAZZO EDGAR FACÓ','PALAZZO EDGAR FACÓ');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('PARAGUASSÚ','PARAGUASSÚ');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('PARAGUASSU ALAGOINHAS','PARAGUASSU ALAGOINHAS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('PARAGUASSÚ CRUZ DAS ALMAS','PARAGUASSÚ CRUZ DAS ALMAS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('PARAGUASSU FEIRA','PARAGUASSU FEIRA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('PARANÁ DP','PARANÁ DP');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('PARVEL','PARVEL');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('PATROCAR','PATROCAR');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('PEDRAGON','PEDRAGON');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('PEDRAGON AFOGADOS','PEDRAGON AFOGADOS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('PEDRAGON OLINDA','PEDRAGON OLINDA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('PERKAL CAMPO GRANDE','PERKAL CAMPO GRANDE');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('PERKAL DOURADOS','PERKAL DOURADOS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('PERKAL PONTA PORÃ','PERKAL PONTA PORÃ');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('PIANNA','PIANNA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('PIANNA ARACRUZ','PIANNA ARACRUZ');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('PIANNA SÃO MATEUS','PIANNA SÃO MATEUS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('PINHO BOM JESUS','PINHO BOM JESUS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('PINHO OSORIO','PINHO OSORIO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('PINHO TORRES','PINHO TORRES');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('PLANETA ANÁPOLIS','PLANETA ANÁPOLIS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('PLANETA BRASÍLIA','PLANETA BRASÍLIA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('PLANETA IMPERATRIZ','PLANETA IMPERATRIZ');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('PLANETA PALMAS','PLANETA PALMAS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('PONTAL','PONTAL');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('PONTAL COLORADO','PONTAL COLORADO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('PONTAL NOVA ESPERANÇA','PONTAL NOVA ESPERANÇA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('PONTO UM','PONTO UM');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('POTYRAN','POTYRAN');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('POTYRAN CURRAIS NOVOS','POTYRAN CURRAIS NOVOS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('PRAIA SUL','PRAIA SUL');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('PRAIA SUL ITANHAEM','PRAIA SUL ITANHAEM');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('PRATANOVA','PRATANOVA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('PRETTO','PRETTO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('PRETTO SOLEDADE','PRETTO SOLEDADE');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('PRIMARCA','PRIMARCA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('PRIME','PRIME');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('PRODIVE','PRODIVE');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('PROESTE','PROESTE');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('PROESTE AVARÉ','PROESTE AVARÉ');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('REISAUTO','REISAUTO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('RETIRAUTO','RETIRAUTO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('RIAUTO','RIAUTO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('RIAUTO VIÇOSA','RIAUTO VIÇOSA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('RIBRAUTO','RIBRAUTO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('RIBRAUTO BATATAIS','RIBRAUTO BATATAIS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('RIBRAUTO SERTÃOZINHO','RIBRAUTO SERTÃOZINHO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('RICAVEL','RICAVEL');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('RICAVEL','RICAVEL');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('RIEDI - PALOTINA','RIEDI - PALOTINA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('RIO CAMPOS','RIO CAMPOS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('RIO NORTE SANTARÉM','RIO NORTE SANTARÉM');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('RIO VALE','RIO VALE');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('RIO VALE CAJAZEIRAS','RIO VALE CAJAZEIRAS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('RIONORTE ALTAMIRA','RIONORTE ALTAMIRA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('RITMO ANDRADAS','RITMO ANDRADAS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('RITMO ESPÍRITO STO PINHAL','RITMO ESPÍRITO STO PINHAL');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('RITMO GUAXUPÉ','RITMO GUAXUPÉ');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('RITMO PIRASSUNUNGA','RITMO PIRASSUNUNGA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('RITMO POÇOS DE CALDAS','RITMO POÇOS DE CALDAS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('RITMO PORTO FERREIRA','RITMO PORTO FERREIRA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('RITMO S SEBASTIÃO PARAÍSO','RITMO S SEBASTIÃO PARAÍSO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('RITMO S. JOÃO BOA VISTA','RITMO S. JOÃO BOA VISTA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('RITMO S. JOSÉ RIO PARDO','RITMO S. JOSÉ RIO PARDO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('ROQUEVILLE','ROQUEVILLE');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('RUDNICK RIO NEGRINHO','RUDNICK RIO NEGRINHO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('RUMO NORTE CONGONHAS','RUMO NORTE CONGONHAS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('SABENAUTO PORTO VELHO','SABENAUTO PORTO VELHO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('SAFIRA','SAFIRA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('SAFRA','SAFRA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('SANAUTO','SANAUTO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('SANTA CLARA','SANTA CLARA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('SANTA CLARA ITOUPAVA SECA','SANTA CLARA ITOUPAVA SECA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('SANTA FÉ','SANTA FÉ');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('SANTA FÉ SÃO JOSÉ','SANTA FÉ SÃO JOSÉ');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('SEMPRE VEÍCULOS','SEMPRE VEÍCULOS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('SERRANA BONFIM','SERRANA BONFIM');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('SERRANA JACOBINA','SERRANA JACOBINA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('SERVEL','SERVEL');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('SERVIBRÁS','SERVIBRÁS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('SEUDÃO','SEUDÃO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('SILCAR','SILCAR');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('SIMCAUTO','SIMCAUTO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('SIMCAUTO SUL','SIMCAUTO SUL');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('SIMPALA','SIMPALA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('SIMPALA SANTA CECILIA','SIMPALA SANTA CECILIA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('SINOSCAR','SINOSCAR');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('SINOSCAR JARDIM LINDOIA','SINOSCAR JARDIM LINDOIA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('SINOSCAR MONTENEGRO','SINOSCAR MONTENEGRO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('SINOSCAR PORTO ALEGRE','SINOSCAR PORTO ALEGRE');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('SINOSCAR SÃO LEOPOLDO','SINOSCAR SÃO LEOPOLDO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('SINOSCAR SAPIRANGA','SINOSCAR SAPIRANGA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('SMAFF','SMAFF');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('SMART','SMART');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('SOMA','SOMA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('SPACK OA','SPACK OA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('SPASSUS','SPASSUS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('SPONCHIADO ERECHIM','SPONCHIADO ERECHIM');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('SPONCHIADO IJUÍ','SPONCHIADO IJUÍ');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('SPONCHIADO PASSO FUNDO','SPONCHIADO PASSO FUNDO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('STARVESA','STARVESA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('STATUS','STATUS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('SUDOAUTO','SUDOAUTO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('SULPAVE','SULPAVE');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('SULPAVE IGUAPE','SULPAVE IGUAPE');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('SUPER 24 DE MAIO','SUPER 24 DE MAIO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('SUPER ILHA','SUPER ILHA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('SUPER RECREIO','SUPER RECREIO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('SUPER TIJUCA','SUPER TIJUCA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('SUPERAUTO','SUPERAUTO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('SUPRA MANUAÇU','SUPRA MANUAÇU');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('SUPREMA','SUPREMA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('SUVEP','SUVEP');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('TAMBAÍ','TAMBAÍ');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('TAMBAÍ MANGUINHOS','TAMBAÍ MANGUINHOS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('TAMBORIL ARCOVERDE','TAMBORIL ARCOVERDE');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('TAMBORIL SERRA TALHADA','TAMBORIL SERRA TALHADA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('TAUBATÉ','TAUBATÉ');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('TAVEL','TAVEL');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('TAVESA','TAVESA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('TELHA VEÍCULOS','TELHA VEÍCULOS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('TIGRÃO ARIQUEMES','TIGRÃO ARIQUEMES');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('TIGRÃO JARÚ','TIGRÃO JARÚ');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('TIGRÃO JI-PARANÁ','TIGRÃO JI-PARANÁ');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('TOPVEL BARREIRAS','TOPVEL BARREIRAS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('TOPVEL BOM JESUS','TOPVEL BOM JESUS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('TOPVEL GUANAMBI','TOPVEL GUANAMBI');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('TOPVEL IRECÊ','TOPVEL IRECÊ');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('TOPVEL LUIZ E. MAGALHÃES','TOPVEL LUIZ E. MAGALHÃES');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('TOPVEL VITÓRIA CONQUISTA','TOPVEL VITÓRIA CONQUISTA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('TOTAL','TOTAL');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('TRANSLAGES','TRANSLAGES');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('TRATOCAR','TRATOCAR');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('UBERVEL','UBERVEL');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('UGLIONE','UGLIONE');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('UNIDAS','UNIDAS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('UVEL','UVEL');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('UVEL BRUSQUE','UVEL BRUSQUE');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('V-8','V-8');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('VALE DO IGUAÇÚ','VALE DO IGUAÇÚ');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('VALENCIANA','VALENCIANA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('VECAL','VECAL');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('VEIBRAS','VEIBRAS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('VEIBRÁS LITORAL','VEIBRÁS LITORAL');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('VELMAX ITAPETININGA','VELMAX ITAPETININGA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('VELMAX ITAPETININGA','VELMAX ITAPETININGA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('VEMAFRE','VEMAFRE');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('VEMAQ CACOAL','VEMAQ CACOAL');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('VEMAQ VILHENA','VEMAQ VILHENA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('VERDE VALE','VERDE VALE');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('VEREDA OFICINAS','VEREDA OFICINAS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('VESSA','VESSA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('VIA NORTE','VIA NORTE');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('VIA NORTE LUCAS','VIA NORTE LUCAS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('VIAMAR ABC','VIAMAR ABC');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('VIAMAR ANÁLIA FRANCO','VIAMAR ANÁLIA FRANCO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('VIAMAR IMIGRANTES','VIAMAR IMIGRANTES');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('VIAMAR MORUMBI','VIAMAR MORUMBI');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('VIAMAR NAÇÕES UNIDAS','VIAMAR NAÇÕES UNIDAS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('VIAMAR PEREIRA BARRETO','VIAMAR PEREIRA BARRETO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('VIAMAR SP','VIAMAR SP');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('VIANORTE JUÍNA','VIANORTE JUÍNA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('VIANORTE SINOP','VIANORTE SINOP');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('VIANORTE SORRISO','VIANORTE SORRISO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('VIAPEÇAS','VIAPEÇAS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('VIAPEÇAS','VIAPEÇAS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('VIGORITO','VIGORITO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('VIGORITO AV. GUARULHOS','VIGORITO AV. GUARULHOS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('VIGORITO ABC','VIGORITO ABC');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('VIGORITO ARICANDUVA','VIGORITO ARICANDUVA');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('VIGORITO CARRÃO','VIGORITO CARRÃO');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('VIGORITO MAUÁ','VIGORITO MAUÁ');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('VIVA RECIFE','VIVA RECIFE');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('VVL','VVL');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('WEST MOTORS','WEST MOTORS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('WEST MOTORS CAPIVARI','WEST MOTORS CAPIVARI');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('ZACARIAS','ZACARIAS');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('ZACARIAS ZONA 07','ZACARIAS ZONA 07');
document.componentForm.lastName.options[document.componentForm.lastName.options.length] = new Option('ZAHER','ZAHER');
}

function setBrowserDropDown() {
document.componentForm.field4.options[document.componentForm.field4.options.length] = new Option('Internet Explorer','Internet Explorer');
document.componentForm.field4.options[document.componentForm.field4.options.length] = new Option('Mozila Firefox','Mozila Firefox');
document.componentForm.field4.options[document.componentForm.field4.options.length] = new Option('Netscape','Netscape');
document.componentForm.field4.options[document.componentForm.field4.options.length] = new Option('Opera','Opera');
document.componentForm.field4.options[document.componentForm.field4.options.length] = new Option('Safari','Safari');
}

function setConnectionDropDown() {
document.componentForm.field3.options[document.componentForm.field3.options.length] = new Option('Discada','Discada');
document.componentForm.field3.options[document.componentForm.field3.options.length] = new Option('Banda Larga','Banda Larga');
document.componentForm.field3.options[document.componentForm.field3.options.length] = new Option('AM','AM');
}






