var ELIGE = [];
var DISTRITOFEDERAL1 = [];
var ESTADODEMEXICO1 = [];
var HIDALGO1 = [];
var MORELOS1 = [];
var PUEBLA1 = [];
var QUERETARO1 = [];


ELIGE[0] = new Option("Elige un estado", "---");

DISTRITOFEDERAL1[0] = new Option("Selecciona", "---");
DISTRITOFEDERAL1[1] = new Option("Chilis Acoxpa", "Chilis Acoxpa");
DISTRITOFEDERAL1[2] = new Option("Chilis Aeropuerto", "Chilis Aeropuerto");
DISTRITOFEDERAL1[3] = new Option("Chilis Alameda", "Chilis Alameda");
DISTRITOFEDERAL1[4] = new Option("Chilis Coapa", "Chilis Coapa");
DISTRITOFEDERAL1[5] = new Option("Chilis Gran Sur", "Chilis Gran Sur");
DISTRITOFEDERAL1[6] = new Option("Chilis Insurgentes", "Chilis Insurgentes");
DISTRITOFEDERAL1[7] = new Option("Chilis Lindavista", "Chilis Lindavista");
DISTRITOFEDERAL1[8] = new Option("Chilis Manacar", "Chilis Manacar");
DISTRITOFEDERAL1[9] = new Option("Chilis Parque Lindavista", "Chilis Parque Lindavista");
DISTRITOFEDERAL1[10] = new Option("Chilis Plaza Antara", "Plaza Antara");
DISTRITOFEDERAL1[11] = new Option("Chilis Polanco", "Chilis Polanco");
DISTRITOFEDERAL1[12] = new Option("Chilis Reforma 222", "Chilis Reforma 222");
DISTRITOFEDERAL1[13] = new Option("Chilis San Jeronimo", "Chilis San Jeronimo");
DISTRITOFEDERAL1[14] = new Option("Chilis Santa Fe", "Santa Fe");
DISTRITOFEDERAL1[15] = new Option("Chilis Tezontle", "Tezontle");
DISTRITOFEDERAL1[16] = new Option("Chilis Universidad", "Universidad");
DISTRITOFEDERAL1[17] = new Option("Chilis Zona Rosa", "Zona Rosa");

ESTADODEMEXICO1[0] = new Option("Selecciona", "---");
ESTADODEMEXICO1[1] = new Option("Chilis Atizapan", "Chilis Atizapan");
ESTADODEMEXICO1[2] = new Option("Chilis Izcalli", "Chilis Izcalli");
ESTADODEMEXICO1[3] = new Option("Chilis Las Americas", "Chilis Las Americas");
ESTADODEMEXICO1[4] = new Option("Chilis Interlomas", "Chilis Interlomas");
ESTADODEMEXICO1[5] = new Option("Chilis Jardin Neza", "Chilis Jardin Neza");
ESTADODEMEXICO1[6] = new Option("Chilis Lomas Verdes", "Chilis Lomas Verdes");
ESTADODEMEXICO1[7] = new Option("Chilis Metepec", "Chilis Metepec");
ESTADODEMEXICO1[8] = new Option("Chilis Plaza Interlomas", "Chilis Plaza Interlomas");
ESTADODEMEXICO1[9] = new Option("Chilis Satelite", "Chilis Satelite");

HIDALGO1[0] = new Option("Selecciona", "---");
HIDALGO1[1] = new Option("Chilis Pachuca", "Chilis Pachuca");

MORELOS1[0] = new Option("Selecciona", "---");
MORELOS1[1] = new Option("Chilis Galerias", "Chilis Galerias");
MORELOS1[2] = new Option("Chilis Rio Mayo", "Chilis Rio Mayo");

PUEBLA1[0] = new Option("Selecciona", "---");
PUEBLA1[1] = new Option("Chilis 5 de Mayo", "Chilis 5 de Mayo");
PUEBLA1[2] = new Option("Chilis CC Angelopolis", "Chilis CC Angelopolis");

QUERETARO1[0] = new Option("Selecciona", "---");
QUERETARO1[1] = new Option("Chilis Galerias Queretaro", "Chilis Galerias Querétaro");
QUERETARO1[2] = new Option("Chilis Plaza Boulevares", "Chilis Plaza Boulevares");


function populateSubSuc(mainSel, subSel){
 var mainMenu = mainSel;
 var subMenu = subSel;
 var subMenuItems;
 subMenu.options.length = 0;

 switch (mainMenu.selectedIndex) {
 case 0:
  subMenuItems = ELIGE;
  break;
 case 1:
  subMenuItems = DISTRITOFEDERAL1;
  break;
 case 2:
  subMenuItems = ESTADODEMEXICO1;
  break;
 case 3:
  subMenuItems = HIDALGO1;
  break; 
 case 4:
  subMenuItems = MORELOS1;
  break;
 case 5:
  subMenuItems = PUEBLA1;
  break;  
 case 6:
  subMenuItems = QUERETARO1;
  break;
 
 }

 for (var i = 0; i < subMenuItems.length; i++) {
  subMenu.options[i] = subMenuItems[i];
 }
}
