function Posicion(cadena)
{    
var last = 0
this.lat_gr=cadena.substring(last,cadena.indexOf("/",last))
last = cadena.indexOf("/",last)+1
this.lat_min=cadena.substring(last,cadena.indexOf("/",last))
last = cadena.indexOf("/",last)+1

this.lat_seg=cadena.substring(last,cadena.indexOf("/",last))
last = cadena.indexOf("/",last)+1

this.lat=cadena.substring(last,cadena.indexOf("/",last))
last = cadena.indexOf("/",last)+1

this.lon_gr=cadena.substring(last,cadena.indexOf("/",last))
last = cadena.indexOf("/",last)+1

this.lon_min=cadena.substring(last,cadena.indexOf("/",last))
last = cadena.indexOf("/",last)+1

this.lon_seg=cadena.substring(last,cadena.indexOf("/",last))
last = cadena.indexOf("/",last)
this.lon=cadena.substring(last+1)

}

function format_number(pnumber,decimals){ 
if (isNaN(pnumber)) { return 0}; 
if (pnumber=='') { return 0}; 

var snum = new String(pnumber); 
var sec = snum.split('.'); 
var whole = parseFloat(sec[0]); 
var result = ''; 

if(sec.length > 1){ 
var dec = new String(sec[1]); 
dec = String(parseFloat(sec[1])/Math.pow(10,(dec.length - decimals))); 
dec = String(whole + Math.round(parseFloat(dec))/Math.pow(10,decimals)); 
var dot = dec.indexOf('.'); 
if(dot == -1){ 
dec += '.'; 
dot = dec.indexOf('.'); 
} 
while(dec.length <= dot + decimals) { dec += '0'; } 
result = dec; 
} else{ 
var dot; 
var dec = new String(whole); 
dec += '.'; 
dot = dec.indexOf('.'); 
while(dec.length <= dot + decimals) { dec += '0'; } 
result = dec; 
} 
return result; 
} 

function calculate(form)
{	       

        lat1 = eval(form.lat_gr_i.value) +eval( form.lat_min_i.value / 60.0)+ eval(form.lat_seg_i.value / 3600.0)
        lon1 = eval(form.lon_gr_i.value) +eval( form.lon_min_i.value / 60.0) + eval(form.lon_seg_i.value / 3600.0)
        lat2 = eval(form.lat_gr_f.value) +eval( form.lat_min_f.value / 60.0) + eval(form.lat_seg_f.value / 3600.0)
        lon2 = eval(form.lon_gr_f.value) +eval( form.lon_min_f.value / 60.0) + eval(form.lon_seg_f.value / 3600.0)
	
	radio=6.378e3

	lat1=lat1*2.0*Math.PI/360.0;
        lat2=lat2*2.0*Math.PI/360.0;
        lon1=lon1*2.0*Math.PI/360.0;
        lon2=lon2*2.0*Math.PI/360.0;
	if (form.sel_lat_i.value!="nort")	
	lat1=-lat1
	
	if (form.sel_lat_f.value!="nort")
	lat2=-lat2

	if (form.sel_lon_i.value!="oest")
	lon1=-lon1
	
	if (form.sel_lon_f.value!="oest")
	lon2=-lon2

	dist = Math.acos((Math.sin(lat1) * Math.sin(lat2)) + (Math.cos(lat1) * Math.cos(lat2) * Math.cos(lon1 - lon2)))
	//dist2 = 2.0 * Math.asin(Math.sqrt(Math.pow(Math.sin((lat1 - lat2) / 2.0), 2) + Math.pow(Math.cos(lat1) * Math.cos(lat2) * (Math.sin((lon1 - lon2) / 2.0)), 2.0)));
	if (form.units.value=="km")
	form.resultat.value = format_number((dist*radio),2)
	if (form.units.value=="miles")
	form.resultat.value = format_number((dist*radio/1.609344),2)
	
	document.appletmap.viewjourney(form.lon_gr_i.value,form.lat_gr_i.value,form.sel_lat_i.value,form.sel_lon_i.value,form.lon_gr_f.value,form.lat_gr_f.value,form.sel_lat_f.value,form.sel_lon_f.value,"a","b",form.resultat.value);
document.appletmap.viewjourney(form.lon_gr_i.value,form.lat_gr_i.value,form.sel_lat_i.value,form.sel_lon_i.value,form.lon_gr_f.value,form.lat_gr_f.value,form.sel_lat_f.value,form.sel_lon_f.value,"a","b",form.resultat.value);	
}

function selectCiutat(select_country,select_city,form)
{
 
 	select_city.options.length=0;
 
 
                        if(select_country.value=="AFGHANISTAN"){afegeix_AFGHANISTAN(select_city,form)}
                        else if(select_country.value=="ALGERIA"){afegeix_ALGERIA(select_city,form)}
                        else if(select_country.value=="ALBANIA"){afegeix_ALBANIA(select_city,form)}
                        else if(select_country.value=="AMERICAN_SAMOA"){afegeix_AMERICAN_SAMOA(select_city,form)}
                        else if(select_country.value=="ANDORRA"){afegeix_ANDORRA(select_city,form)}
                        else if(select_country.value=="ANGOLA"){afegeix_ANGOLA(select_city,form)}
                        else if(select_country.value=="ANGUILLA"){afegeix_ANGUILLA(select_city,form)}
                        else if(select_country.value=="ANTIGUA_AND_BARBUDA"){afegeix_ANTIGUA_AND_BARBUDA(select_city,form)}
                        else if(select_country.value=="ARGENTINA"){afegeix_ARGENTINA(select_city,form)}
                        else if(select_country.value=="ARMENIA"){afegeix_ARMENIA(select_city,form)}
                        else if(select_country.value=="ARUBA"){afegeix_ARUBA(select_city,form)}
                        else if(select_country.value=="AUSTRALIA"){afegeix_AUSTRALIA(select_city,form)}
                        else if(select_country.value=="AUSTRIA"){afegeix_AUSTRIA(select_city,form)}
                        else if(select_country.value=="AZERBAIJAN"){afegeix_AZERBAIJAN(select_city,form)}
                        else if(select_country.value=="AZORES"){afegeix_AZORES(select_city,form)}
                        else if(select_country.value=="BAHAMAS"){afegeix_BAHAMAS(select_city,form)}
                        else if(select_country.value=="BAHRAIN"){afegeix_BAHRAIN(select_city,form)}
                        else if(select_country.value=="BANGLADESH"){afegeix_BANGLADESH(select_city,form)}
                        else if(select_country.value=="BARBADOS"){afegeix_BARBADOS(select_city,form)}
                        else if(select_country.value=="BELARUS"){afegeix_BELARUS(select_city,form)}
                        else if(select_country.value=="BELGIUM"){afegeix_BELGIUM(select_city,form)}
                        else if(select_country.value=="BELIZE"){afegeix_BELIZE(select_city,form)}
                        else if(select_country.value=="BENIN"){afegeix_BENIN(select_city,form)}
                        else if(select_country.value=="BERMUDA"){afegeix_BERMUDA(select_city,form)}
                        else if(select_country.value=="BHUTAN"){afegeix_BHUTAN(select_city,form)}
                        else if(select_country.value=="BOLIVIA"){afegeix_BOLIVIA(select_city,form)}
                        else if(select_country.value=="BOSNIA_AND_HERZEGOVINA"){afegeix_BOSNIA_AND_HERZEGOVINA(select_city,form)}
                        else if(select_country.value=="BOTSWANA"){afegeix_BOTSWANA(select_city,form)}
                        else if(select_country.value=="BRAZIL"){afegeix_BRAZIL(select_city,form)}
                        else if(select_country.value=="BRITISH_VIRGIN_ISLANDS"){afegeix_BRITISH_VIRGIN_ISLANDS(select_city,form)}
                        else if(select_country.value=="BRUNEI"){afegeix_BRUNEI(select_city,form)}
                        else if(select_country.value=="BULGARIA"){afegeix_BULGARIA(select_city,form)}
                        else if(select_country.value=="BURKINA_FASO"){afegeix_BURKINA_FASO(select_city,form)}
                        else if(select_country.value=="BURUNDI"){afegeix_BURUNDI(select_city,form)}
                        else if(select_country.value=="CAMBODIA"){afegeix_CAMBODIA(select_city,form)}
                        else if(select_country.value=="CAMEROON"){afegeix_CAMEROON(select_city,form)}
                        else if(select_country.value=="CANADA"){afegeix_CANADA(select_city,form)}
                        else if(select_country.value=="CAPE_VERDE"){afegeix_CAPE_VERDE(select_city,form)}
                        else if(select_country.value=="CAYMAN_ISLANDS"){afegeix_CAYMAN_ISLANDS(select_city,form)}
                        else if(select_country.value=="CENTRAL_AFRICAN_REPUBLIC"){afegeix_CENTRAL_AFRICAN_REPUBLIC(select_city,form)}
                        else if(select_country.value=="CHAD"){afegeix_CHAD(select_city,form)}
                        else if(select_country.value=="CHILE"){afegeix_CHILE(select_city,form)}
                        else if(select_country.value=="CHINA"){afegeix_CHINA(select_city,form)}
                        else if(select_country.value=="COLOMBIA"){afegeix_COLOMBIA(select_city,form)}
                        else if(select_country.value=="COMOROS"){afegeix_COMOROS(select_city,form)}
                        else if(select_country.value=="CONGO_DEMOCRATIC_REPUBLIC"){afegeix_CONGO_DEMOCRATIC_REPUBLIC(select_city,form)}
                        else if(select_country.value=="CONGO_REPUBLIC"){afegeix_CONGO_REPUBLIC(select_city,form)}
                        else if(select_country.value=="COOK_ISLANDS"){afegeix_COOK_ISLANDS(select_city,form)}
                        else if(select_country.value=="COSTA_RICA"){afegeix_COSTA_RICA(select_city,form)}
                        else if(select_country.value=="CROATIA"){afegeix_CROATIA(select_city,form)}
                        else if(select_country.value=="CUBA"){afegeix_CUBA(select_city,form)}
                        else if(select_country.value=="CYPRUS"){afegeix_CYPRUS(select_city,form)}
                        else if(select_country.value=="CZECH_REPUBLIC"){afegeix_CZECH_REPUBLIC(select_city,form)}
                        else if(select_country.value=="DENMARK"){afegeix_DENMARK(select_city,form)}
                        else if(select_country.value=="DJIBOUTI"){afegeix_DJIBOUTI(select_city,form)}
                        else if(select_country.value=="DOMINICA"){afegeix_DOMINICA(select_city,form)}
                        else if(select_country.value=="DOMINICAN_REPUBLIC"){afegeix_DOMINICAN_REPUBLIC(select_city,form)}
                        else if(select_country.value=="EQUADOR"){afegeix_EQUADOR(select_city,form)}
                        else if(select_country.value=="EGYPT"){afegeix_EGYPT(select_city,form)}
                        else if(select_country.value=="EL_SALVADOR"){afegeix_EL_SALVADOR(select_city,form)}
                        else if(select_country.value=="EQUATORIAL_GUINEA"){afegeix_EQUATORIAL_GUINEA(select_city,form)}
                        else if(select_country.value=="ERITREA"){afegeix_ERITREA(select_city,form)}
                        else if(select_country.value=="ESTONIA"){afegeix_ESTONIA(select_city,form)}
                        else if(select_country.value=="ETHIOPIA"){afegeix_ETHIOPIA(select_city,form)}
                        else if(select_country.value=="FIJI"){afegeix_FIJI(select_city,form)}
                        else if(select_country.value=="FINLAND"){afegeix_FINLAND(select_city,form)}
                        else if(select_country.value=="FRANCE"){afegeix_FRANCE(select_city,form)}
                        else if(select_country.value=="FRENCH_GUIANA"){afegeix_FRENCH_GUIANA(select_city,form)}
                        else if(select_country.value=="FRENCH_POLYNESIA"){afegeix_FRENCH_POLYNESIA(select_city,form)}
                        else if(select_country.value=="GABON"){afegeix_GABON(select_city,form)}
                        else if(select_country.value=="GAMBIA"){afegeix_GAMBIA(select_city,form)}
                        else if(select_country.value=="GEORGIA"){afegeix_GEORGIA(select_city,form)}
                        else if(select_country.value=="GERMANY"){afegeix_GERMANY(select_city,form)}
                        else if(select_country.value=="GHANA"){afegeix_GHANA(select_city,form)}
                        else if(select_country.value=="GIBRALTAR"){afegeix_GIBRALTAR(select_city,form)}
                        else if(select_country.value=="GREECE"){afegeix_GREECE(select_city,form)}
                        else if(select_country.value=="GREENLAND"){afegeix_GREENLAND(select_city,form)}
                        else if(select_country.value=="GRENADA"){afegeix_GRENADA(select_city,form)}
                        else if(select_country.value=="GUAM"){afegeix_GUAM(select_city,form)}
                        else if(select_country.value=="GUATEMALA"){afegeix_GUATEMALA(select_city,form)}
                        else if(select_country.value=="GUINEA"){afegeix_GUINEA(select_city,form)}
                        else if(select_country.value=="GUINEA_BISSAU"){afegeix_GUINEA_BISSAU(select_city,form)}
                        else if(select_country.value=="GUYANA"){afegeix_GUYANA(select_city,form)}
                        else if(select_country.value=="HAITI"){afegeix_HAITI(select_city,form)}
                        else if(select_country.value=="HONDURAS"){afegeix_HONDURAS(select_city,form)}
                        else if(select_country.value=="HONG_KONG"){afegeix_HONG_KONG(select_city,form)}
                        else if(select_country.value=="HUNGARY"){afegeix_HUNGARY(select_city,form)}
                        else if(select_country.value=="ICELAND"){afegeix_ICELAND(select_city,form)}
                        else if(select_country.value=="INDIA"){afegeix_INDIA(select_city,form)}
                        else if(select_country.value=="INDONESIA"){afegeix_INDONESIA(select_city,form)}
                        else if(select_country.value=="IRAN"){afegeix_IRAN(select_city,form)}
                        else if(select_country.value=="IRAQ"){afegeix_IRAQ(select_city,form)}
                        else if(select_country.value=="IRELAND"){afegeix_IRELAND(select_city,form)}
                        else if(select_country.value=="ISRAEL"){afegeix_ISRAEL(select_city,form)}
                        else if(select_country.value=="ITALY"){afegeix_ITALY(select_city,form)}
                        else if(select_country.value=="IVORY_COAST"){afegeix_IVORY_COAST(select_city,form)}
                        else if(select_country.value=="JAMAICA"){afegeix_JAMAICA(select_city,form)}
                        else if(select_country.value=="JAPAN"){afegeix_JAPAN(select_city,form)}
                        else if(select_country.value=="JORDAN"){afegeix_JORDAN(select_city,form)}
                        else if(select_country.value=="KAZAKHSTAN"){afegeix_KAZAKHSTAN(select_city,form)}
                        else if(select_country.value=="KENYA"){afegeix_KENYA(select_city,form)}
                        else if(select_country.value=="KIRIBATI"){afegeix_KIRIBATI(select_city,form)}
                        else if(select_country.value=="KOSOVO"){afegeix_KOSOVO(select_city,form)}
                        else if(select_country.value=="KUWAIT"){afegeix_KUWAIT(select_city,form)}
                        else if(select_country.value=="KYRGYZSTAN"){afegeix_KYRGYZSTAN(select_city,form)}
                        else if(select_country.value=="LAOS"){afegeix_LAOS(select_city,form)}
                        else if(select_country.value=="LATVIA"){afegeix_LATVIA(select_city,form)}
                        else if(select_country.value=="KYRGYZSTAN"){afegeix_KYRGYZSTAN(select_city,form)}
                        else if(select_country.value=="LEBANON"){afegeix_LEBANON(select_city,form)}
                        else if(select_country.value=="LESOTHO"){afegeix_LESOTHO(select_city,form)}
                        else if(select_country.value=="LIBERIA"){afegeix_LIBERIA(select_city,form)}
                        else if(select_country.value=="LIBYA"){afegeix_LIBYA(select_city,form)}
                        else if(select_country.value=="LIECHTENSTEIN"){afegeix_LIECHTENSTEIN(select_city,form)}
                        else if(select_country.value=="LITHUANIA"){afegeix_LITHUANIA(select_city,form)}
                        else if(select_country.value=="LUXEMBOURG"){afegeix_LUXEMBOURG(select_city,form)}
                        else if(select_country.value=="MACAU"){afegeix_MACAU(select_city,form)}
                        else if(select_country.value=="MACEDONIA"){afegeix_MACEDONIA(select_city,form)}
                        else if(select_country.value=="MADAGASCAR"){afegeix_MADAGASCAR(select_city,form)}
                        else if(select_country.value=="MALAWI"){afegeix_MALAWI(select_city,form)}
                        else if(select_country.value=="MALAYSIA"){afegeix_MALAYSIA(select_city,form)}
                        else if(select_country.value=="MALDIVES"){afegeix_MALDIVES(select_city,form)}
                        else if(select_country.value=="MALI"){afegeix_MALI(select_city,form)}
                        else if(select_country.value=="MALTA"){afegeix_MALTA(select_city,form)}
                        else if(select_country.value=="MARSHALL_ISLANDS"){afegeix_MARSHALL_ISLANDS(select_city,form)}
                        else if(select_country.value=="MARTINIQUE"){afegeix_MARTINIQUE(select_city,form)}
                        else if(select_country.value=="MAURITANIA"){afegeix_MAURITANIA(select_city,form)}
                        else if(select_country.value=="MAURITIUS"){afegeix_MAURITIUS(select_city,form)}
                        else if(select_country.value=="MAYOTTE"){afegeix_MAYOTTE(select_city,form)}
                        else if(select_country.value=="MEXICO"){afegeix_MEXICO(select_city,form)}
                        else if(select_country.value=="MICRONESIA"){afegeix_MICRONESIA(select_city,form)}
                        else if(select_country.value=="MOLDOVA"){afegeix_MOLDOVA(select_city,form)}
                        else if(select_country.value=="MONACO"){afegeix_MONACO(select_city,form)}
                        else if(select_country.value=="MONGOLIA"){afegeix_MONGOLIA(select_city,form)}
                        else if(select_country.value=="MONTENEGRO"){afegeix_MONTENEGRO(select_city,form)}
                        else if(select_country.value=="MONTSERRAT"){afegeix_MONTSERRAT(select_city,form)}
                        else if(select_country.value=="MOROCCO"){afegeix_MOROCCO(select_city,form)}
                        else if(select_country.value=="MOZAMBIQUE"){afegeix_MOZAMBIQUE(select_city,form)}
                        else if(select_country.value=="MYANMAR"){afegeix_MYANMAR(select_city,form)}
                        else if(select_country.value=="NAMIBIA"){afegeix_NAMIBIA(select_city,form)}
                        else if(select_country.value=="NAURU"){afegeix_NAURU(select_city,form)}
                        else if(select_country.value=="NEPAL"){afegeix_NEPAL(select_city,form)}
                        else if(select_country.value=="NETHERLANDS"){afegeix_NETHERLANDS(select_city,form)}
                        else if(select_country.value=="NEW_CALEDONIA"){afegeix_NEW_CALEDONIA(select_city,form)}
                        else if(select_country.value=="NEW_ZEALAND"){afegeix_NEW_ZEALAND(select_city,form)}
                        else if(select_country.value=="NICARAGUA"){afegeix_NICARAGUA(select_city,form)}
                        else if(select_country.value=="NIGER"){afegeix_NIGER(select_city,form)}
                        else if(select_country.value=="NIGERIA"){afegeix_NIGERIA(select_city,form)}
                        else if(select_country.value=="NIUE"){afegeix_NIUE(select_city,form)}
                        else if(select_country.value=="NORTH_KOREA"){afegeix_NORTH_KOREA(select_city,form)}
                        else if(select_country.value=="NORTHERN_MARIANA_ISLANDS"){afegeix_NORTHERN_MARIANA_ISLANDS(select_city,form)}
                        else if(select_country.value=="NORWAY"){afegeix_NORWAY(select_city,form)}
                        else if(select_country.value=="OMAN"){afegeix_OMAN(select_city,form)}
                        else if(select_country.value=="PAKISTAN"){afegeix_PAKISTAN(select_city,form)}
                        else if(select_country.value=="PALAU"){afegeix_PALAU(select_city,form)}
                        else if(select_country.value=="PANAMA"){afegeix_PANAMA(select_city,form)}
                        else if(select_country.value=="PAPUA_NEW_GUINEA"){afegeix_PAPUA_NEW_GUINEA(select_city,form)}
                        else if(select_country.value=="PARAGUAY"){afegeix_PARAGUAY(select_city,form)}
                        else if(select_country.value=="PERU"){afegeix_PERU(select_city,form)}
                        else if(select_country.value=="PHILIPPINES"){afegeix_PHILIPPINES(select_city,form)}
                        else if(select_country.value=="POLAND"){afegeix_POLAND(select_city,form)}
                        else if(select_country.value=="PORTUGAL"){afegeix_PORTUGAL(select_city,form)}
                        else if(select_country.value=="PUERTO_RICO"){afegeix_PUERTO_RICO(select_city,form)}
                        else if(select_country.value=="QATAR"){afegeix_QATAR(select_city,form)}
                        else if(select_country.value=="ROMANIA"){afegeix_ROMANIA(select_city,form)}
                        else if(select_country.value=="RUSSIA"){afegeix_RUSSIA(select_city,form)}
                        else if(select_country.value=="RWANDA"){afegeix_RWANDA(select_city,form)}
                        else if(select_country.value=="SAINT_KITTS_AND_NEVIS"){afegeix_SAINT_KITTS_AND_NEVIS(select_city,form)}
                        else if(select_country.value=="SAINT_LUCIA"){afegeix_SAINT_LUCIA(select_city,form)}
                        else if(select_country.value=="SAINT_MARTIN"){afegeix_SAINT_MARTIN(select_city,form)}
                        else if(select_country.value=="SAINT_PIERRE_AND_MIQUELON"){afegeix_SAINT_PIERRE_AND_MIQUELON(select_city,form)}
                        else if(select_country.value=="SAINT_VINCENT_AND_THE_GRENADINES"){afegeix_SAINT_VINCENT_AND_THE_GRENADINES(select_city,form)}
                        else if(select_country.value=="SAMOA"){afegeix_SAMOA(select_city,form)}
                        else if(select_country.value=="SAN_MARINO"){afegeix_SAN_MARINO(select_city,form)}
                        else if(select_country.value=="SAO_TOME_AND_PRINCIPE"){afegeix_SAO_TOME_AND_PRINCIPE(select_city,form)}
                        else if(select_country.value=="SAUDI_ARABIA"){afegeix_SAUDI_ARABIA(select_city,form)}
                        else if(select_country.value=="SENEGAL"){afegeix_SENEGAL(select_city,form)}
                        else if(select_country.value=="SERBIA"){afegeix_SERBIA(select_city,form)}
                        else if(select_country.value=="SEYCHELLES"){afegeix_SEYCHELLES(select_city,form)}
                        else if(select_country.value=="SIERRA_LEONE"){afegeix_SIERRA_LEONE(select_city,form)}
                        else if(select_country.value=="SINGAPORE"){afegeix_SINGAPORE(select_city,form)}
                        else if(select_country.value=="SLOVAKIA"){afegeix_SLOVAKIA(select_city,form)}
                        else if(select_country.value=="SLOVENIA"){afegeix_SLOVENIA(select_city,form)}
                        else if(select_country.value=="SOLOMON_ISLANDS"){afegeix_SOLOMON_ISLANDS(select_city,form)}
                        else if(select_country.value=="SOMALIA"){afegeix_SOMALIA(select_city,form)}
                        else if(select_country.value=="SOUTH_AFRICA"){afegeix_SOUTH_AFRICA(select_city,form)}
                        else if(select_country.value=="SOUTH_KOREA"){afegeix_SOUTH_KOREA(select_city,form)}
                        else if(select_country.value=="SPAIN"){afegeix_SPAIN(select_city,form)}
                        else if(select_country.value=="SRI_LANKA"){afegeix_SRI_LANKA(select_city,form)}
                        else if(select_country.value=="SUDAN"){afegeix_SUDAN(select_city,form)}
                        else if(select_country.value=="SURINAM"){afegeix_SURINAM(select_city,form)}
                        else if(select_country.value=="SWAZILAND"){afegeix_SWAZILAND(select_city,form)}
                        else if(select_country.value=="SWEDEN"){afegeix_SWEDEN(select_city,form)}
                        else if(select_country.value=="SWITZERLAND"){afegeix_SWITZERLAND(select_city,form)}
                        else if(select_country.value=="SYRIA"){afegeix_SYRIA(select_city,form)}
                        else if(select_country.value=="TAIWAN"){afegeix_TAIWAN(select_city,form)}
                        else if(select_country.value=="TAJIKISTAN"){afegeix_TAJIKISTAN(select_city,form)}
                        else if(select_country.value=="TANZANIA"){afegeix_TANZANIA(select_city,form)}
                        else if(select_country.value=="THAILAND"){afegeix_THAILAND(select_city,form)}
                        else if(select_country.value=="TIMOR_LESTE"){afegeix_TIMOR_LESTE(select_city,form)}
                        else if(select_country.value=="TOGO"){afegeix_TOGO(select_city,form)}
                        else if(select_country.value=="TOKELAU"){afegeix_TOKELAU(select_city,form)}
                        else if(select_country.value=="TONGA"){afegeix_TONGA(select_city,form)}
                        else if(select_country.value=="TRINIDAD_AND_TOBAGO"){afegeix_TRINIDAD_AND_TOBAGO(select_city,form)}
                        else if(select_country.value=="TUNISIA"){afegeix_TUNISIA(select_city,form)}
                        else if(select_country.value=="TURKEY"){afegeix_TURKEY(select_city,form)}
                        else if(select_country.value=="TURKMENISTAN"){afegeix_TURKMENISTAN(select_city,form)}
                        else if(select_country.value=="TURKS_AND_CAICOS_ISLANDS"){afegeix_TURKS_AND_CAICOS_ISLANDS(select_city,form)}
                        else if(select_country.value=="TUVALU"){afegeix_TUVALU(select_city,form)}
                        else if(select_country.value=="UGANDA"){afegeix_UGANDA(select_city,form)}
                        else if(select_country.value=="UKRAINE"){afegeix_UKRAINE(select_city,form)}
                        else if(select_country.value=="UNITED_ARAB_EMIRATES"){afegeix_UNITED_ARAB_EMIRATES(select_city,form)}
                        else if(select_country.value=="UNITED_KINGDOM"){afegeix_UNITED_KINGDOM(select_city,form)}
                        else if(select_country.value=="USA"){afegeix_USA(select_city,form)}
                        else if(select_country.value=="URUGUAY"){afegeix_URUGUAY(select_city,form)}
                        else if(select_country.value=="UZBEKISTAN"){afegeix_UZBEKISTAN(select_city,form)}
                        else if(select_country.value=="VANUATU"){afegeix_VANUATU(select_city,form)}
                        else if(select_country.value=="VENEZUELA"){afegeix_VENEZUELA(select_city,form)}
                        else if(select_country.value=="VIETNAM"){afegeix_VIETNAM(select_city,form)}
                        else if(select_country.value=="VIRGIN_ISLANDS"){afegeix_VIRGIN_ISLANDS(select_city,form)}
                        else if(select_country.value=="WALLIS_AND_FUTUNA"){afegeix_WALLIS_AND_FUTUNA(select_city,form)}
                        else if(select_country.value=="WESTERN_SAHARA"){afegeix_WESTERN_SAHARA(select_city,form)}
                        else if(select_country.value=="YEMEN"){afegeix_YEMEN(select_city,form)}
                        else if(select_country.value=="ZAMBIA"){afegeix_ZAMBIA(select_city,form)}
                        else if(select_country.value=="ZIMBABWE"){afegeix_ZIMBABWE(select_city,form)}
                        else if(select_country.value=="DESTINATION1"){afegeix_DESTINATION1(select_city,form)}
                        else if(select_country.value=="DESTINATION2"){afegeix_DESTINATION2(select_city,form)}
                        else if(select_country.value=="DESTINATION3"){afegeix_DESTINATION3(select_city,form)}
                        else if(select_country.value=="DESTINATION4"){afegeix_DESTINATION4(select_city,form)}
                        else if(select_country.value=="DESTINATION5"){afegeix_DESTINATION5(select_city,form)}
                        else if(select_country.value=="DESTINATION6"){afegeix_DESTINATION6(select_city,form)}
                        else if(select_country.value=="DESTINATION7"){afegeix_DESTINATION7(select_city,form)}
                        else if(select_country.value=="DESTINATION8"){afegeix_DESTINATION8(select_city,form)}
                        else if(select_country.value=="DESTINATION9"){afegeix_DESTINATION9(select_city,form)}
                        else if(select_country.value=="DESTINATION10"){afegeix_DESTINATION10(select_city,form)}
                        else if(select_country.value=="DESTINATION11"){afegeix_DESTINATION11(select_city,form)}
                        else if(select_country.value=="DESTINATION12"){afegeix_DESTINATION12(select_city,form)}
                        else if(select_country.value=="DESTINATION13"){afegeix_DESTINATION13(select_city,form)}
                        else if(select_country.value=="DESTINATION14"){afegeix_DESTINATION14(select_city,form)}
                        else if(select_country.value=="DESTINATION15"){afegeix_DESTINATION15(select_city,form)}      
                        else if(select_country.value=="DESTINATION16"){afegeix_DESTINATION16(select_city,form)}               
                        else if(select_country.value=="DESTINATION17"){afegeix_DESTINATION17(select_city,form)}         
                        else if(select_country.value=="DESTINATION18"){afegeix_DESTINATION18(select_city,form)}    
                        else if(select_country.value=="DESTINATION19"){afegeix_DESTINATION19(select_city,form)}    
                        else if(select_country.value=="DESTINATION20"){afegeix_DESTINATION20(select_city,form)}  
                        else if(select_country.value=="DESTINATION21"){afegeix_DESTINATION21(select_city,form)}  
                        else if(select_country.value=="DESTINATION22"){afegeix_DESTINATION22(select_city,form)}  
                        else if(select_country.value=="DESTINATION23"){afegeix_DESTINATION23(select_city,form)} 
                        else if(select_country.value=="DESTINATION24"){afegeix_DESTINATION24(select_city,form)} 
                        else if(select_country.value=="DESTINATION25"){afegeix_DESTINATION25(select_city,form)} 
                        else if(select_country.value=="DESTINATION26"){afegeix_DESTINATION26(select_city,form)} 
                        else if(select_country.value=="DESTINATION27"){afegeix_DESTINATION27(select_city,form)} 
                        else if(select_country.value=="DESTINATION28"){afegeix_DESTINATION28(select_city,form)} 
}
function cargaDatos(select_city,form)
{    
    var posi = new Posicion(select_city.value);
    if (select_city.name=="ci")
    {
    form.lat_gr_i.value = posi.lat_gr
    form.lat_min_i.value = posi.lat_min
    form.lat_seg_i.value = posi.lat_seg
    
    form.lon_gr_i.value = posi.lon_gr
    form.lon_min_i.value = posi.lon_min
    form.lon_seg_i.value = posi.lon_seg
    
	    if (posi.lat=="N")
	    {
	    	form.sel_lat_i.selectedIndex=0;
	    }
	    else
	    {
	    	form.sel_lat_i.selectedIndex=1;	
	    }
	    if (posi.lon=="E")
	    {
	    	form.sel_lon_i.selectedIndex=0;
	    }
	    else
	    {
	    	form.sel_lon_i.selectedIndex=1;
	    }
    }
    else
    {
    form.lat_gr_f.value = posi.lat_gr
    form.lat_min_f.value = posi.lat_min
    form.lat_seg_f.value = posi.lat_seg
    
    form.lon_gr_f.value = posi.lon_gr
    form.lon_min_f.value = posi.lon_min
    form.lon_seg_f.value = posi.lon_seg    
    
	    if (posi.lat=="N")
	    {
	    	form.sel_lat_f.selectedIndex=0;
	    }
	    else
	    {
	    	form.sel_lat_f.selectedIndex=1;	
	    }
	    if (posi.lon=="E")
	    {
	    	form.sel_lon_f.selectedIndex=0;
	    }
	    else
	    {
	    	form.sel_lon_f.selectedIndex=1;
	    }    
    }
    
}
function cargaDatosIni(select_city,form)
{
    var posi = new Posicion(select_city.options[0].value);
    if (select_city.name=="ci")
    {
    form.lat_gr_i.value = posi.lat_gr
    form.lat_min_i.value = posi.lat_min
    form.lat_seg_i.value = posi.lat_seg
    
    form.lon_gr_i.value = posi.lon_gr
    form.lon_min_i.value = posi.lon_min
    form.lon_seg_i.value = posi.lon_seg
	    if (posi.lat=="N")
	    {
	    	form.sel_lat_i.selectedIndex=0;
	    }
	    else
	    {
	    	form.sel_lat_i.selectedIndex=1;	
	    }
	    if (posi.lon=="E")
	    {
	    	form.sel_lon_i.selectedIndex=0;
	    }
	    else
	    {
	    	form.sel_lon_i.selectedIndex=1;
	    }        
    }
    else
    {
    form.lat_gr_f.value = posi.lat_gr
    form.lat_min_f.value = posi.lat_min
    form.lat_seg_f.value = posi.lat_seg
    
    form.lon_gr_f.value = posi.lon_gr
    form.lon_min_f.value = posi.lon_min
    form.lon_seg_f.value = posi.lon_seg    
	    if (posi.lat=="N")
	    {
	    	form.sel_lat_f.selectedIndex=0;
	    }
	    else
	    {
	    	form.sel_lat_f.selectedIndex=1;	
	    }
	    if (posi.lon=="E")
	    {
	    	form.sel_lon_f.selectedIndex=0;
	    }
	    else
	    {
	    	form.sel_lon_f.selectedIndex=1;
	    }        
    }	
    
}
function afegeix_AFGHANISTAN(select_city,form)
{
	select_city.options[0]=new Option("Kabul","34/35/0/N/69/12/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_ALBANIA(select_city,form)
{
	select_city.options[0]=new Option("Tirana","41/20/0/N/19/49/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_ALGERIA(select_city,form)
{
	select_city.options[0]=new Option("Algiers","36/46/0/N/30/3/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_AMERICAN_SAMOA(select_city,form)
{
	select_city.options[0]=new Option("Pago Pago","14/16/0/S/170/43/0/W");
	cargaDatosIni(select_city,form);	
}
function afegeix_ANDORRA(select_city,form)
{
	select_city.options[0]=new Option("Andorra la Vella","42/30/0/N/1/31/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_ANGOLA(select_city,form)
{
	select_city.options[0]=new Option("Luanda","8/50/0/S/13/20/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_ANGUILLA(select_city,form)
{
	select_city.options[0]=new Option("The Valley","18/13/15/N/63/3/6/W");
	cargaDatosIni(select_city,form);	
}
function afegeix_ANTIGUA_AND_BARBUDA(select_city,form)
{
	select_city.options[0]=new Option("Saint John s","17/7/0/N/61/51/0/W");
	cargaDatosIni(select_city,form);	
}
function afegeix_ARGENTINA(select_city,form)
{
	select_city.options[0]=new Option("Buenos Aires","34/35/0/S/58/29/0/W");
        select_city.options[1]=new Option("Cordoba",	 "31/22/0/S/64/15/0/W");
        select_city.options[2]=new Option("Tucuman",	 "26/50/0/S/65/10/0/W");
        cargaDatosIni(select_city,form);
}
function afegeix_ARMENIA(select_city,form)
{
	select_city.options[0]=new Option("Yerevan","40/16/0/N/44/34/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_ARUBA(select_city,form)
{
	select_city.options[0]=new Option("Oranjestad","12/31/0/N/70/1/0/W");
	cargaDatosIni(select_city,form);	
}
function afegeix_AUSTRALIA(select_city,form)
{	
select_city.options[0]=new Option("Adelaide","34/56/0/S/138/35/0/E");
select_city.options[1]=new Option("Alice Springs","23/48/0/S/133/53/0/E");
select_city.options[2]=new Option("Brisbane","27/28/0/S/153/2/0/E");
select_city.options[3]=new Option("Darwin","12/28/0/S/130/51/0/E");
select_city.options[4]=new Option("Melbourne","37/49/0/S/144/58/0/E");
select_city.options[5]=new Option("Perth","31/57/0/S/115/51/0/E");
select_city.options[6]=new Option("Sydney","33/52/0/S/151/12/0/E");
cargaDatosIni(select_city,form);

}
function afegeix_AUSTRIA(select_city,form)
{
	select_city.options[0]=new Option("Vienna","48/15/0/N/16/22/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_AZERBAIJAN(select_city,form)
{
	select_city.options[0]=new Option("Baku","40/22/0/N/49/53/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_AZORES(select_city,form)
{select_city.options[0]=new Option("Lajes (Terceira)","38/45/0/N/27/5/0/W");
	cargaDatosIni(select_city,form);	
}
function afegeix_BAHAMAS(select_city,form)
{	
select_city.options[0]=new Option("Nassau","25/5/0/N/77/21/0/W");
cargaDatosIni(select_city,form);	
}
function afegeix_BAHRAIN(select_city,form)
{
	select_city.options[0]=new Option("Manama","26/13/0/N/50/35/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_BANGLADESH(select_city,form)
{select_city.options[0]=new Option("Chittagong","22/21/0/N/91/50/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_BARBADOS(select_city,form)
{
	select_city.options[0]=new Option("Bridgetown","13/10/0/N/59/32/0/W");
	cargaDatosIni(select_city,form);	
}
function afegeix_BELARUS(select_city,form)
{
	select_city.options[0]=new Option("Minsk","53/55/0/N/27/33/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_BELIZE(select_city,form)
{
	select_city.options[0]=new Option("Belmopan","17/15/0/N/88/46/0/W");
	cargaDatosIni(select_city,form);	
}
function afegeix_BELGIUM(select_city,form)
{select_city.options[0]=new Option("Brussels","50/48/0/N/4/21/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_BENIN(select_city,form)
{
	select_city.options[0]=new Option("Porto Novo","6/28/0/N/2/36/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_BERMUDA(select_city,form)
{select_city.options[0]=new Option("Kindley AFB","33/22/0/N/64/41/0/W");	
cargaDatosIni(select_city,form);	
}
function afegeix_BHUTAN(select_city,form)
{
	select_city.options[0]=new Option("Thimphu","27/28/0/N/89/38/30/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_BOLIVIA(select_city,form)
{
select_city.options[0]=new Option("La Paz","16/30/0/S/68/9/0/W");	
cargaDatosIni(select_city,form);	
}
function afegeix_BOSNIA_AND_HERZEGOVINA(select_city,form)
{
	select_city.options[0]=new Option("Sarajevo","43/52/0/N/18/25/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_BOTSWANA(select_city,form)
{
	select_city.options[0]=new Option("Gaborone","24/40/0/S/25/55/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_BRAZIL(select_city,form)
{
	select_city.options[0]=new Option("Belem","1/27/0/S/48/29/0/W");
select_city.options[1]=new Option("Belo Horizonte","19/56/0/S/43/57/0/W");
select_city.options[2]=new Option("Brasilia","15/52/0/S/47/55/0/W");
select_city.options[3]=new Option("Curitiba","25/25/0/S/49/17/0/W");
select_city.options[4]=new Option("Fortaleza","3/46/0/S/38/33/0/W");
select_city.options[5]=new Option("Porto Alegre","30/2/0/S/51/13/0/W");
select_city.options[6]=new Option("Recife","8/4/0/S/34/53/0/W");
select_city.options[7]=new Option("Rio De Janeiro","22/55/0/S/43/12/0/W");
select_city.options[8]=new Option("Salvador","13/0/0/S/38/30/0/W");
select_city.options[9]=new Option("Sao Paulo","23/33/0/S/46/38/0/W");	
cargaDatosIni(select_city,form);	
}
function afegeix_BRITISH_VIRGIN_ISLANDS(select_city,form)
{
	select_city.options[0]=new Option("Road Town","18/26/0/N/64/37/0/W");
	cargaDatosIni(select_city,form);	
}
function afegeix_BRUNEI(select_city,form)
{
	select_city.options[0]=new Option("Bandar Seri Begawan","4/53/0/N/114/56/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_BULGARIA(select_city,form)
{	select_city.options[0]=new Option("Sofia","42/42/0/N/23/20/0/E");
cargaDatosIni(select_city,form);	
}
function afegeix_BURKINA_FASO(select_city,form)
{
	select_city.options[0]=new Option("Ouagadougou","12/20/0/N/1/40/0/W");
	cargaDatosIni(select_city,form);	
}
function afegeix_BURUNDI(select_city,form)
{
	select_city.options[0]=new Option("Bujumbura","3/30/0/S/30/0/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_CAMBODIA(select_city,form)
{	select_city.options[0]=new Option("Phnom Penh","11/33/0/N/104/51/0/E");
cargaDatosIni(select_city,form);	
}
function afegeix_CAMEROON(select_city,form)
{
	select_city.options[0]=new Option("Yaounde","3/52/0/N/11/31/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_CANADA(select_city,form)
{select_city.options[0]=new Option("","");
	select_city.options[1]=new Option("Calgary, Alba.","51/1/0/N/114/1/0/W"); 
select_city.options[2]=new Option("Edmonton, Alb.","53/34/0/N/113/28/0/W");
select_city.options[3]=new Option("Kingston, Ont.","44/15/0/N/76/30/0/W");
select_city.options[4]=new Option("Montreal, Que.","45/30/0/N/73/35/0/W");
select_city.options[5]=new Option("Moose Jaw, Sask.","50/37/0/N/105/31/0/W");
select_city.options[6]=new Option("London, Ont.","43/2/0/N/81/34/0/W");   
select_city.options[7]=new Option("Nelson, B.C.","49/30/0/N/117/17/0/W"); 
select_city.options[8]=new Option("Ottawa, Ont.","45/24/0/N/75/43/0/W");  
select_city.options[9]=new Option("Quebec, Que.","46/49/0/N/71/11/0/W");  
select_city.options[10]=new Option("Toronto, Ont.","43/40/0/N/79/24/0/W"); 
select_city.options[11]=new Option("Vancouver, B.C.","49/13/0/N/123/06/0/W");
select_city.options[12]=new Option("Victoria, B.C.","48/25/0/N/123/21/0/W");
select_city.options[13]=new Option("Winnipeg, Man.","49/54/0/N/97/7/0/W"); 
cargaDatosIni(select_city,form);
}
function afegeix_CAPE_VERDE(select_city,form)
{
	select_city.options[0]=new Option("Praia","14/55/0/N/23/31/0/W");
	cargaDatosIni(select_city,form);	
}
function afegeix_CAYMAN_ISLANDS(select_city,form)
{
	select_city.options[0]=new Option("George Town","19/20/0/N/81/24/0/W");
	cargaDatosIni(select_city,form);	
}
function afegeix_CENTRAL_AFRICAN_REPUBLIC(select_city,form)
{
	select_city.options[0]=new Option("Bangui","4/22/0/N/18/35/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_CHAD(select_city,form)
{
	select_city.options[0]=new Option("N Djamena","12/6/0/N/15/2/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_CHILE(select_city,form)
{select_city.options[0]=new Option("Punta Arenas","53/10/0/S/70/54/0/W");
select_city.options[1]=new Option("Santiago","33/27/0/S/70/42/0/W");
select_city.options[2]=new Option("Valparaiso","33/1/0/S/71/38/0/W");
	cargaDatosIni(select_city,form);	
}
function afegeix_CHINA(select_city,form)
{	select_city.options[0]=new Option("Chongquing","29/33/0/N/106/33/0/E");
select_city.options[1]=new Option("Shanghai","31/12/0/N/121/26/0/E");
select_city.options[2]=new Option("Beijing","39/55/44/N/116/23/17/E");
cargaDatosIni(select_city,form);	
}
function afegeix_COLOMBIA(select_city,form)
{	select_city.options[0]=new Option("Baranquilla","10/59/0/N/74/48/0/W");
select_city.options[1]=new Option("Bogota","4/36/0/N/74/5/0/W");
select_city.options[2]=new Option("Cali","3/25/0/N/76/30/0/W");
select_city.options[3]=new Option("Medellin","6/13/0/N/75/36/0/W");cargaDatosIni(select_city,form);	
}
function afegeix_COMOROS(select_city,form)
{
	select_city.options[0]=new Option("Moroni","11/41/0/S/43/16/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_CONGO_DEMOCRATIC_REPUBLIC(select_city,form)
{
	select_city.options[0]=new Option("Kinshasa","4/19/0/S/15/19/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_CONGO_REPUBLIC(select_city,form)
{select_city.options[0]=new Option("Brazzaville","4/15/0/S/15/15/0/E");	cargaDatosIni(select_city,form);	
}
function afegeix_COOK_ISLANDS(select_city,form)
{
	select_city.options[0]=new Option("Avarua","21/12/0/S/159/46/0/W");
	cargaDatosIni(select_city,form);	
}
function afegeix_COSTA_RICA(select_city,form)
{
	select_city.options[0]=new Option("San Jose","9/55/0/N/84/4/0/W");
	cargaDatosIni(select_city,form);	
}
function afegeix_CROATIA(select_city,form)
{
	select_city.options[0]=new Option("Zagreb","45/48/0/N/16/0/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_CUBA(select_city,form)
{	select_city.options[0]=new Option("Havana","23/8/0/N/82/21/0/W");
select_city.options[1]=new Option("Guantanamo Bay","19/54/0/N/75/9/0/W");cargaDatosIni(select_city,form);	
}
function afegeix_CYPRUS(select_city,form)
{
	select_city.options[0]=new Option("Nicosia","35/8/0/N/33/28/0/E");
select_city.options[1]=new Option("Larnaca","34/55/0/N/33/38/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_CZECH_REPUBLIC(select_city,form)
{select_city.options[0]=new Option("Prague","50/5/0/N/14/25/0/E");	cargaDatosIni(select_city,form);	
}
function afegeix_DENMARK(select_city,form)
{select_city.options[0]=new Option("Copenhagen","55/41/0/N/12/33/0/E");	cargaDatosIni(select_city,form);	
}
function afegeix_DJIBOUTI(select_city,form)
{
	select_city.options[0]=new Option("Djibouti","11/36/0/N/43/10/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_DOMINICA(select_city,form)
{
	select_city.options[0]=new Option("Roseau","15/18/0/N/61/23/0/W");
	cargaDatosIni(select_city,form);	
}
function afegeix_DOMINICAN_REPUBLIC(select_city,form)
{select_city.options[0]=new Option("Santo Domingo","18/29/0/N/69/54/0/W");cargaDatosIni(select_city,form);	
}
function afegeix_EQUADOR(select_city,form)
{select_city.options[0]=new Option("Guayaquil","2/0/0/S/79/53/0/W");
select_city.options[1]=new Option("Quito","0/13/0/S/78/32/0/W");	cargaDatosIni(select_city,form);	
}
function afegeix_EQUATORIAL_GUINEA(select_city,form)
{
	select_city.options[0]=new Option("Malabo","3/45/0/N/8/47/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_EGYPT(select_city,form)
{	select_city.options[0]=new Option("Cairo","29/52/0/N/31/20/0/E");cargaDatosIni(select_city,form);	
}
function afegeix_EL_SALVADOR(select_city,form)
{select_city.options[0]=new Option("San Salvador","13/42/0/N/89/13/0/W");	cargaDatosIni(select_city,form);	
}
function afegeix_ERITREA(select_city,form)
{
	select_city.options[0]=new Option("Asmara","15/20/0/N/38/55/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_ESTONIA(select_city,form)
{
	select_city.options[0]=new Option("Tallinn","59/25/0/N/24/45/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_ETHIOPIA(select_city,form)
{select_city.options[0]=new Option("Addis Ababa","90/2/0/N/38/45/0/E");
select_city.options[1]=new Option("Asmara","15/17/0/N/38/55/0/E");	cargaDatosIni(select_city,form);	
}
function afegeix_FIJI(select_city,form)
{
	select_city.options[0]=new Option("Suva","18/10/0/S/178/27/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_FINLAND(select_city,form)
{	select_city.options[0]=new Option("Helsinki","60/10/0/N/24/57/0/E");cargaDatosIni(select_city,form);	
}
function afegeix_FRANCE(select_city,form)
{select_city.options[0]=new Option("Lyon","45/42/0/N/4/47/0/E");
select_city.options[1]=new Option("Marseilles","43/18/0/N/5/23/0/E");
select_city.options[2]=new Option("Nantes","47/15/0/N/1/34/0/W");
select_city.options[3]=new Option("Nice","43/42/0/N/7/16/0/E");
select_city.options[4]=new Option("Paris","48/49/0/N/2/29/0/E");
select_city.options[5]=new Option("Strasbourg","48/35/0/N/7/46/0/E");	cargaDatosIni(select_city,form);	
}
function afegeix_FRENCH_GUIANA(select_city,form)
{	select_city.options[0]=new Option("Cayenne","4/56/0/N/52/27/0/W");cargaDatosIni(select_city,form);	
}
function afegeix_FRENCH_POLYNESIA(select_city,form)
{
	select_city.options[0]=new Option("Papeete","17/34/0/S/149/36/0/W");
	cargaDatosIni(select_city,form);	
}
function afegeix_GABON(select_city,form)
{
	select_city.options[0]=new Option("Libreville","0/23/0/N/9/27/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_GAMBIA(select_city,form)
{
	select_city.options[0]=new Option("Banjul","13/28/0/N/16/36/0/W");
	cargaDatosIni(select_city,form);	
}
function afegeix_GEORGIA(select_city,form)
{
	select_city.options[0]=new Option("Tbilisi","41/43/0/N/44/47/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_GERMANY(select_city,form)
{	select_city.options[0]=new Option("Berlin","52/27/0/N/13/18/0/E");
select_city.options[1]=new Option("Hamburg","53/33/0/N/9/58/0/E");
select_city.options[2]=new Option("Hannover","52/24/0/N/9/40/0/E");
select_city.options[3]=new Option("Mannheim","49/34/0/N/8/28/0/E");
select_city.options[4]=new Option("Munich","48/9/0/N/11/34/0/E");cargaDatosIni(select_city,form);	
}
function afegeix_GHANA(select_city,form)
{select_city.options[0]=new Option("Accra","5/33/0/N/0/12/0/W");	cargaDatosIni(select_city,form);	
}
function afegeix_GIBRALTAR(select_city,form)
{select_city.options[0]=new Option("Gibraltar","36/9/0/N/5/22/0/W");	cargaDatosIni(select_city,form);	
}
function afegeix_GREECE(select_city,form)
{	select_city.options[0]=new Option("Athens","37/58/0/N/23/43/0/E");
select_city.options[1]=new Option("Thessaloniki","40/37/0/N/22/57/0/E");cargaDatosIni(select_city,form);	
}
function afegeix_GREENLAND(select_city,form)
{select_city.options[0]=new Option("Narsarssuaq","61/11/0/N/45/25/0/W");	cargaDatosIni(select_city,form);	
}
function afegeix_GRENADA(select_city,form)
{
	select_city.options[0]=new Option("St. George s","12/3/0/N/61/45/0/W");
	cargaDatosIni(select_city,form);	
}
function afegeix_GUAM(select_city,form)
{
	select_city.options[0]=new Option("Hagatna","13/29/0/N/144/45/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_GUATEMALA(select_city,form)
{select_city.options[0]=new Option("Guatemala City","14/37/0/N/90/31/0/W");	cargaDatosIni(select_city,form);	
}
function afegeix_GUINEA(select_city,form)
{
	select_city.options[0]=new Option("Conakry","9/31/0/N/13/42/0/W");
	cargaDatosIni(select_city,form);	
}
function afegeix_GUINEA_BISSAU(select_city,form)
{
	select_city.options[0]=new Option("Bissau","11/52/0/N/15/36/0/W");
	cargaDatosIni(select_city,form);	
}
function afegeix_GUYANA(select_city,form)
{	select_city.options[0]=new Option("Georgetown","6/50/0/N/58/12/0/W");cargaDatosIni(select_city,form);	
}
function afegeix_HAITI(select_city,form)
{select_city.options[0]=new Option("Port Au Prince","18/33/0/N/72/20/0/W");	cargaDatosIni(select_city,form);	
}
function afegeix_HONDURAS(select_city,form)
{	select_city.options[0]=new Option("Tegucigalpa","14/6/0/N/87/13/0/W");cargaDatosIni(select_city,form);	
}
function afegeix_HONG_KONG(select_city,form)
{select_city.options[0]=new Option("Hong Kong","22/18/0/N/114/10/0/E");	cargaDatosIni(select_city,form);	
}
function afegeix_HUNGARY(select_city,form)
{select_city.options[0]=new Option("Budapest","47/31/0/N/19/2/0/E");	cargaDatosIni(select_city,form);	
}
function afegeix_ICELAND(select_city,form)
{select_city.options[0]=new Option("Reykjavik","64/8/0/N/21/56/0/E");cargaDatosIni(select_city,form);	
}
function afegeix_INDIA(select_city,form)
{select_city.options[0]=new Option("Ahmenabad","23/2/0/N/72/35/0/E");
select_city.options[1]=new Option("Bangalore","12/57/0/N/77/37/0/E");
select_city.options[2]=new Option("Mumbay","18/54/0/N/72/49/0/E");
select_city.options[3]=new Option("Calcutta","22/32/0/N/88/20/0/E");
select_city.options[4]=new Option("Madras","13/4/0/N/80/15/0/E");
select_city.options[5]=new Option("Nagpur","21/9/0/N/79/7/0/E");
select_city.options[6]=new Option("New Delhi","28/35/0/N/77/12/0/E");	cargaDatosIni(select_city,form);	
}
function afegeix_INDONESIA(select_city,form)
{select_city.options[0]=new Option("Djakarta","6/11/0/S/106/50/0/E");
select_city.options[1]=new Option("Kupang","10/10/0/S/123/34/0/E");
select_city.options[2]=new Option("Makassar","5/8/0/S/119/28/0/E");
select_city.options[3]=new Option("Medan","3/35/0/N/98/41/0/E");
select_city.options[4]=new Option("Palembang","3/0/0/S/104/46/0/E");
select_city.options[5]=new Option("Surabaya","7/13/0/S/112/43/0/E");	cargaDatosIni(select_city,form);	
}
function afegeix_IRAN(select_city,form)
{select_city.options[0]=new Option("Abadan","30/21/0/N/48/16/0/E");
select_city.options[1]=new Option("Meshed","36/17/0/N/59/36/0/E");
select_city.options[2]=new Option("Tehran","35/41/0/N/51/25/0/E");	cargaDatosIni(select_city,form);	
}
function afegeix_IRAQ(select_city,form)
{select_city.options[0]=new Option("Baghdad","33/20/0/N/44/24/0/E");
select_city.options[1]=new Option("Mosul","36/19/0/N/43/9/0/E");	cargaDatosIni(select_city,form);	
}
function afegeix_IRELAND(select_city,form)
{	select_city.options[0]=new Option("Dublin","53/22/0/N/6/21/0/W");
select_city.options[1]=new Option("Shannon","52/41/0/N/8/55/0/W");cargaDatosIni(select_city,form);	
}
function afegeix_ISRAEL(select_city,form)
{select_city.options[0]=new Option("Jerusalem","31/47/0/N/35/13/0/E");
select_city.options[1]=new Option("Tel Aviv","32/6/0/N/34/47/0/E");	cargaDatosIni(select_city,form);	
}
function afegeix_ITALY(select_city,form)
{	select_city.options[0]=new Option("Milan","45/27/0/N/9/17/0/E");
select_city.options[1]=new Option("Naples","40/53/0/N/14/18/0/E");
select_city.options[2]=new Option("Rome","41/48/0/N/12/36/0/E");cargaDatosIni(select_city,form);	
}
function afegeix_IVORY_COAST(select_city,form)
{select_city.options[0]=new Option("Abidjan","5/19/0/N/4/1/0/W");	cargaDatosIni(select_city,form);	
}
function afegeix_JAMAICA(select_city,form)
{
	select_city.options[0]=new Option("Kingston","17/59/0/N/76/48/0/W");
	cargaDatosIni(select_city,form);	
}
function afegeix_JAPAN(select_city,form)
{select_city.options[0]=new Option("Fukuoka","33/35/0/N/130/27/0/E");
select_city.options[1]=new Option("Sapporo","43/4/0/N/141/21/0/E");
select_city.options[2]=new Option("Tokyo","35/41/0/N/139/46/0/E");	cargaDatosIni(select_city,form);	
}
function afegeix_JORDAN(select_city,form)
{select_city.options[0]=new Option("Amman","31/57/0/N/35/57/0/E");	cargaDatosIni(select_city,form);	
}
function afegeix_KAZAKHSTAN(select_city,form)
{
	select_city.options[0]=new Option("Astana","51/10/0/N/71/30/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_KENYA(select_city,form)
{	select_city.options[0]=new Option("Nairobi","1/16/0/S/36/48/0/E");cargaDatosIni(select_city,form);	
}
function afegeix_KIRIBATI(select_city,form)
{
	select_city.options[0]=new Option("South Tarawa","1/28/0/N/173/2/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_KOSOVO(select_city,form)
{
	select_city.options[0]=new Option("Pristina","42/40/0/N/21/10/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_KUWAIT(select_city,form)
{
	select_city.options[0]=new Option("Kuwait City","29/22/0/N/47/58/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_KYRGYZSTAN(select_city,form)
{
	select_city.options[0]=new Option("Bishkek","42/52/0/N/74/36/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_LAOS(select_city,form)
{
	select_city.options[0]=new Option("Vientiane","17/58/0/N/102/36/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_LATVIA(select_city,form)
{
	select_city.options[0]=new Option("Riga","56/57/0/N/24/6/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_LEBANON(select_city,form)
{select_city.options[0]=new Option("Beirut","33/54/0/N/35/28/0/E");	cargaDatosIni(select_city,form);	
}
function afegeix_LESOTHO(select_city,form)
{
	select_city.options[0]=new Option("Maseru","29/18/0/S/27/28/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_LIBERIA(select_city,form)
{	select_city.options[0]=new Option("Monrovia","6/18/0/N/10/48/0/W");cargaDatosIni(select_city,form);	
}
function afegeix_LIBYA(select_city,form)
{select_city.options[0]=new Option("Benghazi","32/6/0/N/20/4/0/E");	cargaDatosIni(select_city,form);	
}
function afegeix_LIECHTENSTEIN(select_city,form)
{
	select_city.options[0]=new Option("Vaduz","47/8/5/N/9/31/4/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_LITHUANIA(select_city,form)
{
	select_city.options[0]=new Option("Vilnius","54/41/0/N/25/19/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_MACAU(select_city,form)
{
	select_city.options[0]=new Option("MACAU","22/10/0//N/113/33/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_MACEDONIA(select_city,form)
{
	select_city.options[0]=new Option("Skopje","42/0/0/N/21/28/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_MADAGASCAR(select_city,form)
{	select_city.options[0]=new Option("Tananarive","18/55/0/S/47/33/0/E");cargaDatosIni(select_city,form);	
}
function afegeix_MALAWI(select_city,form)
{
	select_city.options[0]=new Option("Lilongwe","13/57/0/S/33/42/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_MALAYSIA(select_city,form)
{select_city.options[0]=new Option("Kuala Lumpur","3/7/0/N/101/42/0/E");
select_city.options[1]=new Option("Penang","5/25/0/N/100/19/0/E");	cargaDatosIni(select_city,form);	
}
function afegeix_MALDIVES(select_city,form)
{
	select_city.options[0]=new Option("Male","4/10/0/N/73/30/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_MALI(select_city,form)
{
	select_city.options[0]=new Option("Bamako","12/39/0/N/8/0/0/W");
	cargaDatosIni(select_city,form);	
}
function afegeix_MALTA(select_city,form)
{
	select_city.options[0]=new Option("Valletta","35/53/0/N/14/30/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_MARSHALL_ISLANDS(select_city,form)
{
	select_city.options[0]=new Option("Majuro","7/7/0/N/171/4/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_MARTINIQUE(select_city,form)
{select_city.options[0]=new Option("Fort De France","14/37/0/N/61/5/0/W");	cargaDatosIni(select_city,form);	
}
function afegeix_MAURITANIA(select_city,form)
{
	select_city.options[0]=new Option("Nouakchott","18/9/0/N/15/58/0/W");
	cargaDatosIni(select_city,form);	
}
function afegeix_MAURITIUS(select_city,form)
{
	select_city.options[0]=new Option("Port Louis","20/10/0/S/57/31/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_MAYOTTE(select_city,form)
{
	select_city.options[0]=new Option("Mamoudzou","12/46/50/S/45/13/40/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_MEXICO(select_city,form)
{select_city.options[0]=new Option("Guadalajara","20/41/0/N/103/20/0/W");
select_city.options[1]=new Option("Merida","20/58/0/N/89/38/0/W");
select_city.options[2]=new Option("Mexico City","19/24/0/N/99/12/0/W");
select_city.options[3]=new Option("Monterrey","25/40/0/N/100/18/0/W");
select_city.options[4]=new Option("Vera Cruz","19/12/0/N/96/8/0/W");	cargaDatosIni(select_city,form);	
}
function afegeix_MICRONESIA(select_city,form)
{
	select_city.options[0]=new Option("Palikir","6/55/0/N/158/9/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_MOLDOVA(select_city,form)
{
	select_city.options[0]=new Option("Chisinau","47/0/0/N/28/55/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_MONACO(select_city,form)
{
	select_city.options[0]=new Option("Monaco","43/45/0/N/7/23/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_MONGOLIA(select_city,form)
{
	select_city.options[0]=new Option("Ulan Bator","47/55/0/N/106/53/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_MONTENEGRO(select_city,form)
{
	select_city.options[0]=new Option("Podgorica","42/47/0/N/19/28/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_MONTSERRAT(select_city,form)
{
	select_city.options[0]=new Option("Plymouth","16/45/0/N/62/12/0/W");
	cargaDatosIni(select_city,form);	
}
function afegeix_MOROCCO(select_city,form)
{select_city.options[0]=new Option("Casablanca","33/35/0/N/7/39/0/W");	cargaDatosIni(select_city,form);	
}
function afegeix_MOZAMBIQUE(select_city,form)
{
	select_city.options[0]=new Option("Maputo","25/57/0/S/32/35/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_MYANMAR(select_city,form)
{	select_city.options[0]=new Option("Mandalay","21/59/0/N/96/6/0/E");
select_city.options[1]=new Option("Rangoon","16/47/0/N/96/9/0/E");
cargaDatosIni(select_city,form);	
}
function afegeix_NEPAL(select_city,form)
{select_city.options[0]=new Option("Katmandu","27/42/0/N/85/12/0/E");	cargaDatosIni(select_city,form);	
}
function afegeix_NAMIBIA(select_city,form)
{select_city.options[0]=new Option("Windhoek","22/33/0/S/17/04/0/E");	cargaDatosIni(select_city,form);	
}
function afegeix_NAURU(select_city,form)
{
	select_city.options[0]=new Option("Nauru","0/32/0/S/166/55/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_NETHERLANDS(select_city,form)
{select_city.options[0]=new Option("Amsterdam","52/23/0/N/4/55/0/E");	cargaDatosIni(select_city,form);	
}
function afegeix_NEW_CALEDONIA(select_city,form)
{
	select_city.options[0]=new Option("Noumea","22/16/33/S/166/27/29/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_NEW_ZEALAND(select_city,form)
{	select_city.options[0]=new Option("Auckland","36/51/0/S/174/46/0/E");
select_city.options[1]=new Option("Christchurch","43/32/0/S/172/37/0/E");
select_city.options[2]=new Option("Wellington","41/17/0/S/174/46/0/E");cargaDatosIni(select_city,form);	
}
function afegeix_NICARAGUA(select_city,form)
{	select_city.options[0]=new Option("Managua","12/10/0/N/86/15/0/W");cargaDatosIni(select_city,form);	
}
function afegeix_NIGER(select_city,form)
{
	select_city.options[0]=new Option("Niamey","13/32/0/N/2/5/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_NIGERIA(select_city,form)
{select_city.options[0]=new Option("Lagos","6/27/0/N/3/24/0/E");	cargaDatosIni(select_city,form);	
}
function afegeix_NIUE(select_city,form)
{
	select_city.options[0]=new Option("Alofi","19/3/0/S/169/55/0/W");
	cargaDatosIni(select_city,form);	
}
function afegeix_NORTH_KOREA(select_city,form)
{select_city.options[0]=new Option("Pyongyang","39/2/0/N/125/41/0/E");	cargaDatosIni(select_city,form);	
}
function afegeix_NORTHERN_MARIANA_ISLANDS(select_city,form)
{
	select_city.options[0]=new Option("Saipan","15/11/0/N/145/45/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_NORWAY(select_city,form)
{select_city.options[0]=new Option("Bergen","60/24/0/N/5/19/0/E");
select_city.options[1]=new Option("Oslo","59/56/0/N/10/44/0/E");	cargaDatosIni(select_city,form);	
}
function afegeix_PAKISTAN(select_city,form)
{select_city.options[0]=new Option("Karachi","24/48/0/N/66/59/0/E");
select_city.options[1]=new Option("Lahore","31/35/0/N/74/20/0/E");
select_city.options[2]=new Option("Peshwar","34/1/0/N/71/35/0/E");	cargaDatosIni(select_city,form);	
}
function afegeix_PALAU(select_city,form)
{
	select_city.options[0]=new Option("Melekeok","7/21/0/N/134/28/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_PANAMA(select_city,form)
{select_city.options[0]=new Option("Panama City","8/58/0/N/79/33/0/W");	cargaDatosIni(select_city,form);	
}
function afegeix_PAPUA_NEW_GUINEA(select_city,form)
{select_city.options[0]=new Option("Port Moresby","9/29/0/S/147/9/0/E");	cargaDatosIni(select_city,form);	
}
function afegeix_PARAGUAY(select_city,form)
{select_city.options[0]=new Option("Ascuncion","25/17/0/S/57/30/0/W");	cargaDatosIni(select_city,form);	
}
function afegeix_PERU(select_city,form)
{
select_city.options[0]=new Option("Lima","12/5/0/S/77/3/0/W");	cargaDatosIni(select_city,form);	
}
function afegeix_PHILIPPINES(select_city,form)
{select_city.options[0]=new Option("Manila","14/35/0/N/120/59/0/E");	cargaDatosIni(select_city,form);	
}
function afegeix_POLAND(select_city,form)
{select_city.options[0]=new Option("Krakow","50/4/0/N/19/57/0/E");
select_city.options[1]=new Option("Warsaw","52/13/0/N/21/2/0/E");	cargaDatosIni(select_city,form);	
}
function afegeix_PORTUGAL(select_city,form)
{select_city.options[0]=new Option("Lisbon","38/43/0/N/9/8/0/W");	cargaDatosIni(select_city,form);	
}
function afegeix_PUERTO_RICO(select_city,form)
{select_city.options[0]=new Option("San Juan","18/29/0/N/66/7/0/W");	cargaDatosIni(select_city,form);	
}
function afegeix_QATAR(select_city,form)
{
	select_city.options[0]=new Option("Doha","25/18/0/N/51/31/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_ROMANIA(select_city,form)
{select_city.options[0]=new Option("Bucharest","44/25/0/N/26/6/0/E");	cargaDatosIni(select_city,form);	
}
function afegeix_RUSSIA(select_city,form)
{
select_city.options[0]=new Option("Arkhangelsk","64/33/0/N/40/32/0/E");
select_city.options[1]=new Option("Kaliningrad","54/43/0/N/20/30/0/E");
select_city.options[2]=new Option("Krasnoyarsk","56/1/0/N/92/57/0/E");
select_city.options[3]=new Option("Saint Petersburg","59/56/0/N/30/16/0/E");
select_city.options[4]=new Option("Moscow","55/46/0/N/37/40/0/E");
select_city.options[5]=new Option("Petropavlovsk","52/53/0/N/158/42/0/E");
select_city.options[6]=new Option("Rostov on Don","47/13/0/N/39/43/0/E");
select_city.options[7]=new Option("Sverdlovsk","56/49/0/N/60/38/0/E");
select_city.options[8]=new Option("Vladivostok","43/7/0/N/131/55/0/E");
select_city.options[9]=new Option("Volgograd","48/42/0/N/44/31/0/E");	cargaDatosIni(select_city,form);	
}
function afegeix_RWANDA(select_city,form)
{
	select_city.options[0]=new Option("Kigali","1/57/0/S/30/4/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_SAINT_KITTS_AND_NEVIS(select_city,form)
{
	select_city.options[0]=new Option("Basseterre","17/18/0/N/62/44/0/W");
	cargaDatosIni(select_city,form);	
}
function afegeix_SAINT_LUCIA(select_city,form)
{
	select_city.options[0]=new Option("Castries","14/1/0/N/60/59/0/W");
	cargaDatosIni(select_city,form);	
}
function afegeix_SAINT_MARTIN(select_city,form)
{
	select_city.options[0]=new Option("Marigot","18/6/0/N/63/6/0/W");
	cargaDatosIni(select_city,form);	
}
function afegeix_SAINT_PIERRE_AND_MIQUELON(select_city,form)
{
	select_city.options[0]=new Option("Saint-Pierre","46/47/0/N/56/10/0/W");
	cargaDatosIni(select_city,form);	
}
function afegeix_SAINT_VINCENT_AND_THE_GRENADINES(select_city,form)
{
	select_city.options[0]=new Option("Kingstown","13/10/0/N/61/14/0/W");
	cargaDatosIni(select_city,form);	
}
function afegeix_SAMOA(select_city,form)
{
	select_city.options[0]=new Option("Apia","13/50/0/S/171/45/0/W");
	cargaDatosIni(select_city,form);	
}
function afegeix_SAN_MARINO(select_city,form)
{
	select_city.options[0]=new Option("City of San Marino","43/56/0/N/12/27/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_SAO_TOME_AND_PRINCIPE(select_city,form)
{
	select_city.options[0]=new Option("Sao Tome","0/20/0/N/6/44/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_SAUDI_ARABIA(select_city,form)
{select_city.options[0]=new Option("Dhahran","26/17/0/N/50/9/0/E");
select_city.options[1]=new Option("Jedda","21/28/0/N/39/10/0/E");
select_city.options[2]=new Option("Riyadh","24/39/0/N/46/42/0/E");	cargaDatosIni(select_city,form);	
}
function afegeix_SENEGAL(select_city,form)
{select_city.options[0]=new Option("Dakar","14/42/0/N/17/29/0/W");	cargaDatosIni(select_city,form);	
}
function afegeix_SERBIA(select_city,form)
{
	select_city.options[0]=new Option("Belgrade","44/49/14/N/20/27/44/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_SEYCHELLES(select_city,form)
{
	select_city.options[0]=new Option("Victoria","4/37/0/S/55/27/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_SIERRA_LEONE(select_city,form)
{
	select_city.options[0]=new Option("Freetown","8/31/0/N/13/15/0/W");
	cargaDatosIni(select_city,form);	
}
function afegeix_SINGAPORE(select_city,form)
{select_city.options[0]=new Option("Singapore","1/18/0/N/103/50/0/E");	cargaDatosIni(select_city,form);	
}
function afegeix_SLOVAKIA(select_city,form)
{select_city.options[0]=new Option("Bratislava","48/10/0/N/17/10/0/E");	cargaDatosIni(select_city,form);	
}
function afegeix_SLOVENIA(select_city,form)
{
	select_city.options[0]=new Option("Ljubljana","46/3/0/N/14/30/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_SOMALIA(select_city,form)
{select_city.options[0]=new Option("Mogadiscio","2/2/0/N/49/19/0/E");	cargaDatosIni(select_city,form);	
}
function afegeix_SOUTH_AFRICA(select_city,form)
{select_city.options[0]=new Option("Cape Town","33/56/0/S/18/29/0/E");
select_city.options[1]=new Option("Johannesburg","26/11/0/S/28/3/0/E");
select_city.options[2]=new Option("Pretoria","25/45/0/S/28/14/0/E");	cargaDatosIni(select_city,form);	
}
function afegeix_SOUTH_KOREA(select_city,form)
{select_city.options[0]=new Option("Seoul","37/34/0/N/126/58/0/E");	cargaDatosIni(select_city,form);	
}
function afegeix_SOUTH_YEMEN(select_city,form)
{select_city.options[0]=new Option("Aden","12/50/0/N/45/2/0/E");	cargaDatosIni(select_city,form);	
}
function afegeix_SPAIN(select_city,form)
{select_city.options[0]=new Option("Barcelona","41/23/0/N/2/11/0/E");
select_city.options[1]=new Option("Madrid","40/24/0/N/3/41/0/W");
select_city.options[2]=new Option("Valencia","39/28/0/N/0/23/0/W");	cargaDatosIni(select_city,form);	
}
function afegeix_SRI_LANKA(select_city,form)
{select_city.options[0]=new Option("Colombo","6/54/0/N/79/52/0/E");	cargaDatosIni(select_city,form);	
}
function afegeix_SUDAN(select_city,form)
{select_city.options[0]=new Option("Khartoum","15/37/0/N/32/33/0/E");	cargaDatosIni(select_city,form);	
}
function afegeix_SURINAM(select_city,form)
{	select_city.options[0]=new Option("Paramaribo","5/49/0/N/55/9/0/W");cargaDatosIni(select_city,form);	
}
function afegeix_SWAZILAND(select_city,form)
{
	select_city.options[0]=new Option("Mbabane","26/19/0/S/31/8/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_SWEDEN(select_city,form)
{select_city.options[0]=new Option("Stockholm","59/21/0/N/18/4/0/E");	cargaDatosIni(select_city,form);	
}
function afegeix_SWITZERLAND(select_city,form)
{select_city.options[0]=new Option("Zurich","47/23/0/N/8/33/0/E");	cargaDatosIni(select_city,form);	
}
function afegeix_SYRIA(select_city,form)
{select_city.options[0]=new Option("Damascus","33/30/0/N/36/20/0/E");	cargaDatosIni(select_city,form);	
}
function afegeix_TAIWAN(select_city,form)
{select_city.options[0]=new Option("Tainan","22/57/0/N/120/12/0/E");
select_city.options[1]=new Option("Taipei","25/2/0/N/121/31/0/E");	cargaDatosIni(select_city,form);	
}
function afegeix_TAJIKISTAN(select_city,form)
{
	select_city.options[0]=new Option("Dushanbe","38/33/0/N/68/48/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_TANZANIA(select_city,form)
{select_city.options[0]=new Option("Dar es Salaam","6/50/0/S/39/18/0/E");	cargaDatosIni(select_city,form);	
}
function afegeix_THAILAND(select_city,form)
{select_city.options[0]=new Option("Bangkok","13/44/0/N/100/30/0/E");	cargaDatosIni(select_city,form);	
}
function afegeix_TIMOR_LESTE(select_city,form)
{
	select_city.options[0]=new Option("Dili","8/34/0/S/125/34/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_TOGO(select_city,form)
{
	select_city.options[0]=new Option("Lome","6/7/0/N/1/13/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_TOKELAU(select_city,form)
{
	select_city.options[0]=new Option("Tokelau Islands","9/0/0/S/171/45/0/W");
	cargaDatosIni(select_city,form);	
}
function afegeix_TONGA(select_city,form)
{
	select_city.options[0]=new Option("Nukualofa","21/9/0/S/175/14/0/W");
	cargaDatosIni(select_city,form);	
}
function afegeix_TRINIDAD_AND_TOBAGO(select_city,form)
{	select_city.options[0]=new Option("Port of Spain","10/40/0/N/61/31/0/W");cargaDatosIni(select_city,form);	
}
function afegeix_TUNISIA(select_city,form)
{	select_city.options[0]=new Option("Tunis","36/47/0/N/10/12/0/E");cargaDatosIni(select_city,form);	
}
function afegeix_TURKEY(select_city,form)
{select_city.options[0]=new Option("Adana","36/59/0/N/35/18/0/E");
select_city.options[1]=new Option("Ankara","39/57/0/N/32/53/0/E");
select_city.options[2]=new Option("Istanbul","40/58/0/N/28/50/0/E");
select_city.options[3]=new Option("Izmir","38/26/0/N/27/10/0/E");	cargaDatosIni(select_city,form);	
}
function afegeix_TURKMENISTAN(select_city,form)
{
	select_city.options[0]=new Option("Ashgabat","37/58/0/N/58/20/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_TURKS_AND_CAICOS_ISLANDS(select_city,form)
{
	select_city.options[0]=new Option("Cockburn Town","21/29/0/N/71/7/0/W");
	cargaDatosIni(select_city,form);	
}
function afegeix_TUVALU(select_city,form)
{
	select_city.options[0]=new Option("Funafuti","8/31/0/S/179/13/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_UKRAINE(select_city,form)
{
	select_city.options[0]=new Option("Kiev","50/27/0/N/30/30/0/E");
select_city.options[1]=new Option("Odessa","46/29/0/N/30/44/0/E");
select_city.options[2]=new Option("Kharkov","50/0/0/N/36/14/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_UNITED_ARAB_EMIRATES(select_city,form)
{
	select_city.options[0]=new Option("Abu Dhabi","22/47/0/N/54/37/0/E");
select_city.options[1]=new Option("Dubai","25/16/0/N/55/20/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_UNITED_KINGDOM(select_city,form)
{select_city.options[0]=new Option("Belfast","54/36/0/N/5/55/0/W");
select_city.options[1]=new Option("Birmingham","52/29/0/N/1/56/0/W");
select_city.options[2]=new Option("Cardiff","51/28/0/N/3/10/0/W");
select_city.options[3]=new Option("Edinburgh","55/55/0/N/3/11/0/W");
select_city.options[4]=new Option("Glasgow","55/52/0/N/4/17/0/W");
select_city.options[5]=new Option("London","51/29/0/N/0/0/0/W");	cargaDatosIni(select_city,form);	
}
function afegeix_USA(select_city,form)
{
	select_city.options[0]=new Option("","");
select_city.options[1]=new Option("Albany, N.Y.","42/40/0/N/73/45/0/W");
select_city.options[2]=new Option("Albuquerque, N.M.","35/05/0/N/106/39/0/W");
select_city.options[3]=new Option("Amarillo, Tex.","35/11/0/N/101/50/0/W");
select_city.options[4]=new Option("Anchorage, Alaska","61/13/0/N/149/54/0/W");
select_city.options[5]=new Option("Atlanta, Ga.","33/45/0/N/84/23/0/W");
select_city.options[6]=new Option("Austin, Tex.","30/16/0/N/97/44/0/W");
select_city.options[7]=new Option("Baker, Ore.","44/47/0/N/117/50/0/W");
select_city.options[8]=new Option("Baltimore, Md.","39/18/0/N/76/38/0/W");
select_city.options[9]=new Option("Bangor, Maine","44/48/0/N/68/47/0/W"); 
select_city.options[10]=new Option("Birmingham, Ala.","33/30/0/N/86/50/0/W");
select_city.options[11]=new Option("Bismarck, N.D.","46/48/0/N/100/47/0/W");
select_city.options[12]=new Option("Boise, Idaho","43/36/0/N/116/13/0/W"); 
select_city.options[13]=new Option("Boston, Mass.","42/21/0/N/71/5/0/W");  
select_city.options[14]=new Option("Buffalo, N.Y.","42/55/0/N/78/50/0/W"); 
select_city.options[15]=new Option("Carlsbad, N.M.","32/26/0/N/104/15/0/W");
select_city.options[16]=new Option("Charleston, S.C.","32/47/0/N/79/56/0/W");
select_city.options[17]=new Option("Charleston, W.","Va.","38/21/0/N/81/38/0/W");
select_city.options[18]=new Option("Charlotte, N.C.","35/14/0/N/80/50/0/W");
select_city.options[19]=new Option("Cheyenne, Wyo.","41/9/0/N/104/52/0/W");
select_city.options[20]=new Option("Chicago, Ill.","41/50/0/N/87/37/0/W"); 
select_city.options[21]=new Option("Cincinnati, Ohio","39/8/0/N/84/30/0/W");
select_city.options[22]=new Option("Cleveland, Ohio","41/28/0/N/81/37/0/W");
select_city.options[23]=new Option("Columbia, S.C.","34/0/0/N/81/2/0/W");  
select_city.options[24]=new Option("Columbus, Ohio","40/0/0/N/83/1/0/W");  
select_city.options[25]=new Option("Dallas, Tex.","32/46/0/N/96/46/0/W");  
select_city.options[26]=new Option("Denver, Colo.","39/45/0/N/105/0/0/W"); 
select_city.options[27]=new Option("Des Moines, Iowa","41/35/0/N/93/37/0/W");
select_city.options[28]=new Option("Detroit, Mich.","42/20/0/N/83/3/0/W"); 
select_city.options[29]=new Option("Dubuque, Iowa","42/31/0/N/90/40/0/W");   
select_city.options[30]=new Option("Duluth, Minn.","46/49/0/N/92/5/0/W");  
select_city.options[31]=new Option("Eastport, Maine","44/54/0/N/67/0/0/W"); 
select_city.options[32]=new Option("El Centro, Calif.","32/38/0/N/115/33/0/W");
select_city.options[33]=new Option("El Paso, Tex.","31/46/0/N/106/29/0/W");
select_city.options[34]=new Option("Eugene, Ore.","44/3/0/N/123/5/0/W");   
select_city.options[35]=new Option("Fargo, N.D.","46/52/0/N/96/48/0/W");   
select_city.options[36]=new Option("Flagstaff, Ariz.","35/13/0/N/111/41/0/W");
select_city.options[37]=new Option("Fort Worth, Tex.","32/43/0/N/97/19/0/W");
select_city.options[38]=new Option("Fresno, Calif.","36/44/0/N/119/48/0/W");
select_city.options[39]=new Option("Grand Junction, Colo.","39/5/0/N/108/33/0/W");
select_city.options[40]=new Option("Grand Rapids, Mich.","42/58/0/N/85/40/0/W");
select_city.options[41]=new Option("Havre, Mont.","48/33/0/N/109/43/0/W"); 
select_city.options[42]=new Option("Helena, Mont.","46/35/0/N/112/2/0/W"); 
select_city.options[43]=new Option("Honolulu, Hawaii","21/18/0/N/157/50/0/W");
select_city.options[44]=new Option("Hot Springs, Ark.","34/31/0/N/93/3/0/W");
select_city.options[45]=new Option("Houston, Tex.","29/45/0/N/95/21/0/W"); 
select_city.options[46]=new Option("Idaho Falls, Idaho","43/30/0/N/112/1/0/W");
select_city.options[47]=new Option("Indianapolis, Ind.","39/46/0/N/86/10/0/W");
select_city.options[48]=new Option("Jackson, Miss.","32/20/0/N/90/12/0/W");
select_city.options[49]=new Option("Jacksonville, Fla.","30/22/0/N/81/40/0/W");
select_city.options[50]=new Option("Juneau, Alaska","58/18/0/N/134/24/0/W");
select_city.options[51]=new Option("Kansas City, Mo.","39/6/0/N/94/35/0/W");
select_city.options[52]=new Option("Key West, Fla.","24/33/0/N/81/48/0/W");
select_city.options[53]=new Option("Klamath Falls, Ore.","42/10/0/N/121/44/0/W");
select_city.options[54]=new Option("Knoxville, Tenn.","35/57/0/N/83/56/0/W");
select_city.options[55]=new Option("Las Vegas, Nev.","36/10/0/N/115/12/0/W");
select_city.options[56]=new Option("Lewiston, Idaho","46/24/0/N/117/2/0/W"); 
select_city.options[57]=new Option("Lincoln, Neb.","40/50/0/N/96/40/0/W"); 
select_city.options[58]=new Option("Long Beach, Calif.","33/46/0/N/118/11/0/W");
select_city.options[59]=new Option("Los Angeles, Calif.","34/3/0/N/118/15/0/W");
select_city.options[60]=new Option("Louisville, Ky.","38/15/0/N/85/46/0/W");
select_city.options[61]=new Option("Manchester, N.H.","43/0/0/N/71/30/0/W");
select_city.options[62]=new Option("Memphis, Tenn.","35/9/0/N/90/3/0/W");  
select_city.options[63]=new Option("Miami, Fla.","25/46/0/N/80/12/0/W");   
select_city.options[64]=new Option("Milwaukee, Wis.","43/2/0/N/87/55/0/W");
select_city.options[65]=new Option("Minneapolis, Minn.","44/59/0/N/93/14/0/W");
select_city.options[66]=new Option("Mobile, Ala.","30/42/0/N/88/3/0/W");   
select_city.options[67]=new Option("Montgomery, Ala.","32/21/0/N/86/18/0/W");
select_city.options[68]=new Option("Montpelier, Vt.","44/15/0/N/72/32/0/W");
select_city.options[69]=new Option("Nashville, Tenn.","36/10/0/N/86/47/0/W");
select_city.options[70]=new Option("Newark, N.J.","40/44/0/N/74/10/0/W");  
select_city.options[71]=new Option("New Haven, Conn.","41/19/0/N/72/55/0/W");
select_city.options[72]=new Option("New Orleans, La.","29/57/0/N/90/4/0/W");
select_city.options[73]=new Option("New York, N.Y.","40/47/0/N/73/58/0/W");
select_city.options[74]=new Option("Nome, Alaska","64/25/0/N/165/30/0/W"); 
select_city.options[75]=new Option("Oakland, Calif.","37/48/0/N/122/16/0/W");
select_city.options[76]=new Option("Oklahoma City, Okla.","35/26/0/N/97/28/0/W");
select_city.options[77]=new Option("Omaha, Neb.","41/15/0/N/95/56/0/W");   
select_city.options[78]=new Option("Philadelphia, Pa.","39/57/0/N/75/10/0/W");
select_city.options[79]=new Option("Phoenix, Ariz.","33/29/0/N/112/4/0/W");
select_city.options[80]=new Option("Pierre, S.D.","44/22/0/N/100/21/0/W"); 
select_city.options[81]=new Option("Pittsburgh, Pa.","40/27/0/N/79/57/0/W");
select_city.options[82]=new Option("Portland, Maine","43/40/0/N/70/15/0/W");
select_city.options[83]=new Option("Portland, Ore.","45/31/0/N/122/41/0/W");
select_city.options[84]=new Option("Providence, R.I.","41/50/0/N/71/24/0/W");
select_city.options[85]=new Option("Raleigh, N.C.","35/46/0/N/78/39/0/W"); 
select_city.options[86]=new Option("Reno, Nev.","39/30/0/N/119/49/0/W");   
select_city.options[87]=new Option("Richfield, Utah","38/46/0/N/112/5/0/W");
select_city.options[88]=new Option("Richmond, Va.","37/33/0/N/77/29/0/W"); 
select_city.options[89]=new Option("Roanoke, Va.","37/17/0/N/79/57/0/W");  
select_city.options[90]=new Option("Sacramento, Calif.","38/35/0/N/121/30/0/W");
select_city.options[91]=new Option("St. Louis, Mo.","38/35/0/N/90/12/0/W");
select_city.options[92]=new Option("Salt Lake City, Utah","40/46/0/N/111/54/0/W");
select_city.options[93]=new Option("San Antonio, Tex.","29/23/0/N/98/33/0/W");
select_city.options[94]=new Option("San Diego, Calif.","32/42/0/N/117/10/0/W");
select_city.options[95]=new Option("San Francisco, Calif.","37/47/0/N/122/26/0/W");
select_city.options[96]=new Option("San Jose, Calif.","37/20/0/N/121/53/0/W");
select_city.options[97]=new Option("San Juan, P.R.","18/30/0/N/66/10/0/W");
select_city.options[98]=new Option("Santa Fe, N.M.","35/41/0/N/105/57/0/W");
select_city.options[99]=new Option("Savannah, Ga.","32/5/0/N/81/5/0/W");   
select_city.options[100]=new Option("Seattle, Wash.","47/37/0/N/122/20/0/W");
select_city.options[101]=new Option("Shreveport, La.","32/28/0/N/93/42/0/W");
select_city.options[102]=new Option("Sioux Falls, S.D.","43/33/0/N/96/44/0/W");
select_city.options[103]=new Option("Sitka, Alaska","57/10/0/N/135/15/0/W");
select_city.options[104]=new Option("Spokane, Wash.","47/40/0/N/117/26/0/W");
select_city.options[105]=new Option("Springfield, Ill.","39/48/0/N/89/38/0/W");
select_city.options[106]=new Option("Springfield, Mass.","42/6/0/N/72/34/0/W");
select_city.options[107]=new Option("Springfield, Mo.","37/13/0/N/93/17/0/W");
select_city.options[108]=new Option("Syracuse, N.Y.","43/2/0/N/76/8/0/W");  
select_city.options[109]=new Option("Tampa, Fla.","27/57/0/N/82/27/0/W");   
select_city.options[110]=new Option("Toledo, Ohio","41/39/0/N/83/33/0/W");  
select_city.options[111]=new Option("Tulsa, Okla.","36/09/0/N/95/59/0/W");  
select_city.options[112]=new Option("Virginia Beach, Va.","36/51/0/N/75/58/0/W");
select_city.options[113]=new Option("Washington, D.C.","38/53/0/N/77/02/0/W");
select_city.options[114]=new Option("Wichita, Kan.","37/43/0/N/97/17/0/W"); 
select_city.options[115]=new Option("Wilmington, N.C.","34/14/0/N/77/57/0/W");	
cargaDatosIni(select_city,form);
}
function afegeix_URUGUAY(select_city,form)
{select_city.options[0]=new Option("Montevideo","34/51/0/S/56/13/0/W");	cargaDatosIni(select_city,form);	
}
function afegeix_UZBEKISTAN(select_city,form)
{
	select_city.options[0]=new Option("Tashkent","41/20/0/N/69/18/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_VANUATU(select_city,form)
{
	select_city.options[0]=new Option("Port Vila","17/45/0/S/168/18/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_VENEZUELA(select_city,form)
{select_city.options[0]=new Option("Caracas","10/30/0/N/66/56/0/W");
select_city.options[1]=new Option("Maracaibo","10/39/0/N/71/36/0/W");	cargaDatosIni(select_city,form);	
}
function afegeix_VIETNAM(select_city,form)
{select_city.options[0]=new Option("Da Nang","16/4/0/N/108/13/0/E");
select_city.options[1]=new Option("Hanoi","21/2/0/N/105/52/0/E");
select_city.options[2]=new Option("Ho Chi Minh City (Saigon)","10/47/0/N/106/42/0/E");	cargaDatosIni(select_city,form);	
}
function afegeix_WALLIS_AND_FUTUNA(select_city,form)
{
	select_city.options[0]=new Option("Mata-Utu","13/17/0/S/176/11/0/W");
	cargaDatosIni(select_city,form);	
}
function afegeix_WESTERN_SAHARA(select_city,form)
{
	select_city.options[0]=new Option("El Aaiun","27/9/13/N/13/12/12/W");
	cargaDatosIni(select_city,form);	
}
function afegeix_YEMEN(select_city,form)
{
	select_city.options[0]=new Option("Sana","15/24/16/N/44/12/24/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_ZAMBIA(select_city,form)
{
	select_city.options[0]=new Option("Lusaka","15/25/0/S/28/17/0/E");
	cargaDatosIni(select_city,form);	
}
function afegeix_ZAIRE(select_city,form)
{select_city.options[0]=new Option("Kinshasa (Leopoldville)","4/20/0/S/15/18/0/E");
select_city.options[1]=new Option("Kisangani (Stanleyville)","0/26/0/S/15/14/0/E");	cargaDatosIni(select_city,form);	
}
function afegeix_ZIMBABWE(select_city,form)
{
	select_city.options[0]=new Option("Harare","17/50/0/S/31/3/0/E");
	cargaDatosIni(select_city,form);	
}

function afegeix_DESTINATION1(select_city,form)
{select_city.options[0]=new Option("Tangalla Beach, Sri Lanka","06/2/0/N/80/47/0/E"); cargaDatosIni(select_city,form);
}
function afegeix_DESTINATION2(select_city,form)
{select_city.options[0]=new Option("Perito Moreno Glacier, Argentina","47/50/0/S/72/8/0/W");	cargaDatosIni(select_city,form);
}
function afegeix_DESTINATION3(select_city,form)
{select_city.options[0]=new Option("Palenque Ruins, Mexico","17/32/0/N/91/59/0/W"); cargaDatosIni(select_city,form);
}
function afegeix_DESTINATION4(select_city,form)
{select_city.options[0]=new Option("Lake Toba, Indonesia","2/37/0/N/98/49/0/E");	cargaDatosIni(select_city,form);
}
function afegeix_DESTINATION5(select_city,form)
{select_city.options[0]=new Option("Easter Island, Chile","27/7/0/S/109/22/0/W"); cargaDatosIni(select_city,form);
}
function afegeix_DESTINATION6(select_city,form)
{select_city.options[0]=new Option("Ipanema Beach, Brazil","22/59/0/S/43/12/0/W"); cargaDatosIni(select_city,form);
}
function afegeix_DESTINATION7(select_city,form)
{select_city.options[0]=new Option("Queenstown, USA","45/3/0/S/168/41/0/E"); cargaDatosIni(select_city,form);
}
function afegeix_DESTINATION8(select_city,form)
{select_city.options[0]=new Option("Grand Canyon","36/3/0/N/112/8/0/W");	cargaDatosIni(select_city,form);
}
function afegeix_DESTINATION9(select_city,form)
{select_city.options[0]=new Option("Amboseli National Park, Kenya","2/30/0/S/37/15/0/E"); cargaDatosIni(select_city,form);
}
function afegeix_DESTINATION10(select_city,form)
{select_city.options[0]=new Option("Hardanger Fjord, Norway","60/34/0/N/6/54/0/E"); cargaDatosIni(select_city,form);
}
function afegeix_DESTINATION11(select_city,form)
{select_city.options[0]=new Option("La Habana Vieja, Cuba","23/8/0/N/82/21/0/W"); cargaDatosIni(select_city,form);
}	
function afegeix_DESTINATION12(select_city,form)
{select_city.options[0]=new Option("Mykonos Island,Greece","37/27/0/N/25/23/0/E"); cargaDatosIni(select_city,form);
}
function afegeix_DESTINATION13(select_city,form)
{select_city.options[0]=new Option("The Great Wall, China","39/58/0/N/119/48/0/E"); cargaDatosIni(select_city,form);
}
function afegeix_DESTINATION14(select_city,form)
{select_city.options[0]=new Option("Plitvice Lakes National Park, Croatia","44/51/0/N/15/37/0/E"); cargaDatosIni(select_city,form);
}
function afegeix_DESTINATION15(select_city,form)
{select_city.options[0]=new Option("Machu Picchu Ruins, Peru","13/9/0/S/72/31/0/W"); cargaDatosIni(select_city,form);
}
function afegeix_DESTINATION16(select_city,form)
{select_city.options[0]=new Option("Halong Bay, Vietnam","20/52/31/N/107/4/11/E"); cargaDatosIni(select_city,form);
}
function afegeix_DESTINATION17(select_city,form)
{select_city.options[0]=new Option("Uluru Ayers Rock, Australia","25/23/0/S/131/5/0/E"); cargaDatosIni(select_city,form);
}
function afegeix_DESTINATION18(select_city,form)
{select_city.options[0]=new Option("Iguazu Falls, Argentina/Brazil","25/35/0/S/54/22/0/W"); cargaDatosIni(select_city,form);
}
function afegeix_DESTINATION19(select_city,form)
{select_city.options[0]=new Option("Angkor Archaelogical Park, Cambodia","13/24/45/N/103/52/0/E"); cargaDatosIni(select_city,form);
}
function afegeix_DESTINATION20(select_city,form)
{select_city.options[0]=new Option("Table Mountain, South Africa","33/56/0/S/18/29/0/E"); cargaDatosIni(select_city,form);
}
function afegeix_DESTINATION21(select_city,form)
{select_city.options[0]=new Option("Lanzarote Island, Spain","28/57/44/N/13/33/0/W"); cargaDatosIni(select_city,form);
}
function afegeix_DESTINATION22(select_city,form)
{select_city.options[0]=new Option("Malbork Castle, Poland","54/2/23/N/19/1/40/E"); cargaDatosIni(select_city,form);
}
function afegeix_DESTINATION23(select_city,form)
{select_city.options[0]=new Option("Lake Titicaca, Peru","15/50/11/S/69/20/19/W"); cargaDatosIni(select_city,form);
}
function afegeix_DESTINATION24(select_city,form)
{select_city.options[0]=new Option("Petra, Jordan","30/19/43/N/35/26/31/E"); cargaDatosIni(select_city,form);
}
function afegeix_DESTINATION25(select_city,form)
{select_city.options[0]=new Option("Phi Phi Islands, Thailand","7/44/0/N/98/46/0/E"); cargaDatosIni(select_city,form);
}
function afegeix_DESTINATION26(select_city,form)
{select_city.options[0]=new Option("Colosseum, Rome, Italy","41/53/24/N/12/29/32/E"); cargaDatosIni(select_city,form);
}
function afegeix_DESTINATION27(select_city,form)
{select_city.options[0]=new Option("Pamukkale, Turkey","37/55/13/N/29/7/15/E"); cargaDatosIni(select_city,form);
}
function afegeix_DESTINATION28(select_city,form)
{select_city.options[0]=new Option("Aruba Island, Netherlands Antilles","12/31/0/N/70/1/0/W"); cargaDatosIni(select_city,form);
}