var actividadesNames = new Array();var actividadesValues = new Array();var destinosNames = new Array();var destinosValues = new Array();destinosNames[0] = "COLOMBIA";destinosValues[0] = "COLOMBIA";destinosNames[1] = " -Bogotá";destinosValues[1] = "3313";destinosNames[2] = " -Boyaca";destinosValues[2] = "3317";destinosNames[3] = " -Cartagena";destinosValues[3] = "3327";destinosNames[4] = " -Cundinamarca";destinosValues[4] = "3318";destinosNames[5] = " -Medellín";destinosValues[5] = "3328";destinosNames[6] = " -Parques Naturales";destinosValues[6] = "3314";destinosNames[7] = " -San Andrés";destinosValues[7] = "3312";destinosNames[8] = " -Santa Marta";destinosValues[8] = "3311";destinosNames[9] = " -Tolima";destinosValues[9] = "3341";destinosNames[10] = " -Zona Cafetera";destinosValues[10] = "3315";destinosNames[11] = "CARIBE"; destinosValues[11] ="CARIBE"; destinosNames[12] = "-Aruba"; destinosValues[12]="4932";function cargaCombos(seleccionado){var combo = document.busquedaSimpleForm.seleccion;combo.options.length=0;if(seleccionado == 'ACTIVIDADES'){for(i=0; i<actividadesNames.length;i++){combo.options[i] = new Option(actividadesNames[i], actividadesValues[i]);}}else{for(i=0; i<destinosNames.length;i++){combo.options[i] = new Option(destinosNames[i], destinosValues[i]);}}combo.options[0].selected = true;}cargaCombos('DESTINOS');