
CiudadesId = new Array
('ACA',
'AGU',
'CPE',
'CUN',
'CUU',
'MEX',
'CME',
'CJS',
'CEN',
'CVM',
'CLQ',
'CZM',
'CVJ',
'CUL',
'DGO',
'GDL',
'GYM',
'HMO',
'HUX',
'ZIH',
'LAP',
'LZC',
'BJX',
'LTO',
'LMM',
'ZLO',
'MAM',
'MZT',
'MID',
'MXL',
'MTT',
'LOV',
'MTY',
'MLM',
'NLD',
'OAX',
'PDS',
'PAZ',
'PBC',
'PXM',
'PVR',
'QRO',
'REX',
'SCX',
'SLW',
'SJD',
'SLP',
'TAM',
'TAP',
'TPQ',
'TIJ',
'TLC',
'TRC',
'TGZ',
'VER',
'VSA',
'ZCL');

CiudadesNombre= new Array
('Acapulco (ACA)',
'Aguascalientes (AGU)',
'Campeche (CPE)',
'Cancun (CUN)',
'Chihuahua (CUU)',
'Ciudad de Mexico (MEX)',
'Ciudad del Carmen (CME)',
'Ciudad Juárez (CJS)',
'Ciudad Obregón (CEN)',
'Ciudad Victoria (CVM)',
'Colima (CLQ)',
'Cozumel (CZM)',
'Cuernavaca (CVJ)',
'Culiacán (CUL)',
'Durango (DGO)',
'Guadalajara (GDL)',
'Guaymas (GYM)',
'Hermosillo (HMO)',
'Huatulco (HUX)',
'Ixtapa/Zihuatanejo (ZIH)',
'La Paz (LAP)',
'Lázaro Cardenas (LZC)',
'León (BJX)',
'Loreto (LTO)',
'Los Mochis (LMM)',
'Manzanillo (ZLO)',
'Matamoros (MAM)',
'Mazatlán (MZT)',
'Merida (MID)',
'Mexicali (MXL)',
'Minatitlán (MTT)',
'Monclova (LOV)',
'Monterrey (MTY)',
'Morelia (MLM)',
'Nuevo Laredo (NLD)',
'Oaxaca (OAX)',
'Piedras Negras (PDS)',
'Poza Rica (PAZ)',
'Puebla (PBC)',
'Puerto Escondido (PXM)',
'Puerto Vallarta (PVR)',
'Querétaro (QRO)',
'Reynosa (REX)',
'Salina Cruz (SCX)',
'Saltillo (SLW)',
'San José del Cabo (SJD)',
'San Luis Potosí (SLP)',
'Tampico (TAM)',
'Tapachula (TAP)',
'Tepic (TPQ)',
'Tijuana (TIJ)',
'Toluca (TLC)',
'Torreón (TRC)',
'Tuxtla Gutiérrez (TGZ)',
'Veracruz (VER)',
'Villahermosa (VSA)',
'Zacatecas (ZCL)');

DestinosId = new Array
("1",
"49",
"55",
"46",
"2",
"66",
"3",
"92",
"48",
"11",
"45",
"53",
"116",
"97",
"58",
"36",
"4",
"57",
"110",
"61",
"109",
"15",
"47",
"134",
"131",
"14",
"5",
"6",
"7",
"35",
"54",
"71",
"8",
"111",
"30",
"96",
"9",
"10",
"70",
"107",
"32",
"51",
"95",
"17",
"68",
"78",
"115",
"16",
"39",
"52",
"117",
"12",
"40",
"94",
"13",
"112",
"74",
"76",
"59",
"69",
"65",
"43",
"41",
"118",
"121",
"50",
"67",
"44",
"73",
"77",
"113",
"91",
"31",
"42",
"72",
"93",
"60");

DestinosNombre = new Array(
"Acapulco",
"Aguascalientes",
"Barrancas del Cobre",
"Campeche",
"Cancún",
"Chetumal",
"Chiapas",
"Chichén Itzá",
"Chihuahua",
"Ciudad de México",
"Ciudad del Carmen",
"Ciudad Juárez",
"Ciudad Obregón",
"Ciudad Victoria",
"Coahuila",
"Costalegre",
"Cozumel",
"Cuernavaca",
"Culiacán",
"Durango",
"Ensenada",
"Guadalajara",
"Guanajuato",
"Guaymas San Carlos",
"Hermosillo",
"Holbox",
"Huatulco",
"Isla Mujeres",
"Ixtapa y Zihuatanejo",
"La Paz",
"León",
"Loreto",
"Los Cabos",
"Los Mochis",
"Manzanillo",
"Matamoros",
"Mazatlán",
"Mérida",
"Mexicali",
"Michoacán",
"Monterrey",
"Morelia",
"Nuevo Laredo",
"Oaxaca",
"Pachuca",
"Palenque",
"Pátzcuaro",
"Playa del Carmen",
"Puebla",
"Puerto Escondido",
"Puerto Peñasco",
"Puerto Vallarta",
"Querétaro",
"Reynosa",
"Riviera Maya",
"Riviera Nayarit",
"Saltillo",
"San Cristóbal de las Casas",
"San Luis Potosí",
"San Miguel de Allende",
"Sonora",
"Tampico",
"Taxco",
"Tequesquitengo",
"Tequisquiapan",
"Tijuana y Rosarito",
"Tlaxcala",
"Toluca",
"Torreón",
"Tuxtla Gutiérrez",
"Valle de Bravo",
"Veracruz Estado",
"Veracruz Puerto",
"Villahermosa",
"Xalapa",
"Yucatán",
"Zacatecas");

function FillHotelDestinations(ctrl)
{
    for(var x = 0; x < DestinosNombre.length; x++) {
        var option = document.createElement('option');
        option.appendChild(document.createTextNode(DestinosNombre[x]));
        option.setAttribute('value', DestinosId[x]);
        ctrl.appendChild(option);
    }
}

function FillPackageCities(ctrl)
{
    for(var x = 0; x < CiudadesNombre.length; x++) {
        var option = document.createElement('option');
        option.appendChild(document.createTextNode(CiudadesNombre[x]));
        option.setAttribute('value', CiudadesNombre[x]);
        ctrl.appendChild(option);
    }
}