function conv_est(uf,min,max) {
  this.uf  = uf;
  this.min = min;
  this.max = max;
}

var Estado = new Array 
(
new conv_est("SP","00000","09999"),
new conv_est("SP","01000","19999"),
new conv_est("RJ","20000","28999"),
new conv_est("ES","29000","29999"),
new conv_est("MG","30000","39999"),
new conv_est("BA","40000","48999"),
new conv_est("SE","49000","49999"),
new conv_est("PE","50000","56999"),
new conv_est("AL","57000","57999"),
new conv_est("PB","58000","58999"),
new conv_est("RN","59000","59999"),
new conv_est("CE","60000","63999"),
new conv_est("PI","64000","64999"),
new conv_est("MA","65000","65999"),
new conv_est("PA","66000","68899"),
new conv_est("AP","68900","68999"),
new conv_est("AM","69000","69299"),
new conv_est("RR","69300","69399"),
new conv_est("AM","69400","69899"),
new conv_est("AC","69900","69999"),
new conv_est("DF","70000","72799"),
new conv_est("GO","72800","72999"),
new conv_est("DF","73000","73699"),
new conv_est("GO","73700","76999"),
new conv_est("TO","77000","77999"),
new conv_est("MT","78000","78899"),
new conv_est("RO","78900","78999"),
new conv_est("MS","79000","79999"),
new conv_est("PR","80000","87999"),
new conv_est("SC","88000","89999"),
new conv_est("RS","90000","99999")
);
