function make_locations() {


  if (document.search_form.area.selectedIndex == 0)
  {
	document.search_form.location.length=1;
  	document.search_form.location.selectedIndex = 0
  	document.search_form.location.options[0].text = "Select Location";
  	document.search_form.location.options[0].value = "";
	document.search_form.location.style.width=140;
    document.search_form.location.disabled=1;

	document.search_form.city.style.width=140;
	document.search_form.city.length=1;
  	document.search_form.city.selectedIndex = 0
  	document.search_form.city.options[0].text = "Select Town";
  	document.search_form.city.options[0].value = "";
    document.search_form.city.disabled=1;

}


if (document.search_form.area.selectedIndex == 1)
{


document.search_form.location.disabled=0;
document.search_form.location.selectedIndex = 0
document.search_form.location.length=7;

document.search_form.location.options[0].text = "Select Location";
document.search_form.location.options[0].value = "";
document.search_form.location.options[1].text = "Egypt";
document.search_form.location.options[1].value = "Egypt";
document.search_form.location.options[2].text = "Kenya";
document.search_form.location.options[2].value = "Kenya";
document.search_form.location.options[3].text = "Mauritious";
document.search_form.location.options[3].value = "Mauritious";
document.search_form.location.options[4].text = "Morocco";
document.search_form.location.options[4].value = "Morocco";
document.search_form.location.options[5].text = "South Africa";
document.search_form.location.options[5].value = "South Africa";
document.search_form.location.options[6].text = "Tunisia";
document.search_form.location.options[6].value = "Tunisia";


}


if (document.search_form.area.selectedIndex == 2)
{


document.search_form.location.disabled=0;
document.search_form.location.selectedIndex = 0
document.search_form.location.length=5;

document.search_form.location.options[0].text = "Select Location";
document.search_form.location.options[0].value = "";
document.search_form.location.options[1].text = "Argentina";
document.search_form.location.options[1].value = "Argentina";
document.search_form.location.options[2].text = "Brazil";
document.search_form.location.options[2].value = "Brazil";
document.search_form.location.options[3].text = "Canada";
document.search_form.location.options[3].value = "Canada";
document.search_form.location.options[4].text = "USA";
document.search_form.location.options[4].value = "USA";


}


if (document.search_form.area.selectedIndex == 3)
{


document.search_form.location.disabled=0;
document.search_form.location.selectedIndex = 0
document.search_form.location.length=6;

document.search_form.location.options[0].text = "Select Location";
document.search_form.location.options[0].value = "";
document.search_form.location.options[1].text = "China";
document.search_form.location.options[1].value = "China";
document.search_form.location.options[2].text = "Japan";
document.search_form.location.options[2].value = "Japan";
document.search_form.location.options[3].text = "Russia";
document.search_form.location.options[3].value = "Russia";
document.search_form.location.options[4].text = "Thailand";
document.search_form.location.options[4].value = "Thailand";
document.search_form.location.options[5].text = "Turkey";
document.search_form.location.options[5].value = "Turkey";


}


if (document.search_form.area.selectedIndex == 4)
{


document.search_form.location.disabled=0;
document.search_form.location.selectedIndex = 0
document.search_form.location.length=22;

document.search_form.location.options[0].text = "Select Location";
document.search_form.location.options[0].value = "";
document.search_form.location.options[1].text = "Austria";
document.search_form.location.options[1].value = "Austria";
document.search_form.location.options[2].text = "Belgium";
document.search_form.location.options[2].value = "Belgium";
document.search_form.location.options[3].text = "Bulgaria";
document.search_form.location.options[3].value = "Bulgaria";
document.search_form.location.options[4].text = "Czech";
document.search_form.location.options[4].value = "Czech";
document.search_form.location.options[5].text = "Denmark";
document.search_form.location.options[5].value = "Denmark";
document.search_form.location.options[6].text = "Finland";
document.search_form.location.options[6].value = "Finland";
document.search_form.location.options[7].text = "France";
document.search_form.location.options[7].value = "France";
document.search_form.location.options[8].text = "Germany";
document.search_form.location.options[8].value = "Germany";
document.search_form.location.options[9].text = "Greece";
document.search_form.location.options[9].value = "Greece";
document.search_form.location.options[10].text = "Hungary";
document.search_form.location.options[10].value = "Hungary";
document.search_form.location.options[11].text = "Italy";
document.search_form.location.options[11].value = "Italy";
document.search_form.location.options[12].text = "Luxembourg";
document.search_form.location.options[12].value = "Luxembourg";
document.search_form.location.options[13].text = "Netherlands";
document.search_form.location.options[13].value = "Netherlands";
document.search_form.location.options[14].text = "Norway";
document.search_form.location.options[14].value = "Norway";
document.search_form.location.options[15].text = "Portugal";
document.search_form.location.options[15].value = "Portugal";
document.search_form.location.options[16].text = "Romania";
document.search_form.location.options[16].value = "Romania";
document.search_form.location.options[17].text = "Slovakia";
document.search_form.location.options[17].value = "Slovakia";
document.search_form.location.options[18].text = "Spain";
document.search_form.location.options[18].value = "Spain";
document.search_form.location.options[19].text = "Sweden";
document.search_form.location.options[19].value = "Sweden";
document.search_form.location.options[20].text = "Switzerland";
document.search_form.location.options[20].value = "Switzerland";
document.search_form.location.options[21].text = "United Kingdom";
document.search_form.location.options[21].value = "United Kingdom";


}



make_towns();
}

// _________________________________________________________________________________________


function make_towns() {



if (document.search_form.location.selectedIndex == 0)
  {
	document.search_form.city.length=1;
  	document.search_form.city.selectedIndex = 0
  	document.search_form.city.options[0].text = "Select Town";
  	document.search_form.city.options[0].value = "";


  document.search_form.city.disabled=1;

}

if (document.search_form.area.selectedIndex == 1)
{if (document.search_form.location.selectedIndex == 1)
{


document.search_form.city.disabled=0;
document.search_form.city.selectedIndex = 0
document.search_form.city.length=3;

document.search_form.city.options[0].text = "Select Town";
document.search_form.city.options[0].value = "";
document.search_form.city.options[1].text = "Alexandria";
document.search_form.city.options[1].value = "Alexandria";
document.search_form.city.options[2].text = "Cairo";
document.search_form.city.options[2].value = "Cairo";


}


if (document.search_form.location.selectedIndex == 2)
{


document.search_form.city.disabled=0;
document.search_form.city.selectedIndex = 0
document.search_form.city.length=2;

document.search_form.city.options[0].text = "Select Town";
document.search_form.city.options[0].value = "";
document.search_form.city.options[1].text = "Nairobi";
document.search_form.city.options[1].value = "Nairobi";


}


if (document.search_form.location.selectedIndex == 3)
{


document.search_form.city.disabled=0;
document.search_form.city.selectedIndex = 0
document.search_form.city.length=3;

document.search_form.city.options[0].text = "Select Town";
document.search_form.city.options[0].value = "";
document.search_form.city.options[1].text = "Grand Bay";
document.search_form.city.options[1].value = "Grand Bay";
document.search_form.city.options[2].text = "Port Louis";
document.search_form.city.options[2].value = "Port Louis";


}


if (document.search_form.location.selectedIndex == 4)
{


document.search_form.city.disabled=0;
document.search_form.city.selectedIndex = 0
document.search_form.city.length=4;

document.search_form.city.options[0].text = "Select Town";
document.search_form.city.options[0].value = "";
document.search_form.city.options[1].text = "Casablanca";
document.search_form.city.options[1].value = "Casablanca";
document.search_form.city.options[2].text = "Marrakech";
document.search_form.city.options[2].value = "Marrakech";
document.search_form.city.options[3].text = "Rabat";
document.search_form.city.options[3].value = "Rabat";


}


if (document.search_form.location.selectedIndex == 5)
{


document.search_form.city.disabled=0;
document.search_form.city.selectedIndex = 0
document.search_form.city.length=2;

document.search_form.city.options[0].text = "Select Town";
document.search_form.city.options[0].value = "";
document.search_form.city.options[1].text = "Cape Town";
document.search_form.city.options[1].value = "Cape Town";


}


if (document.search_form.location.selectedIndex == 6)
{


document.search_form.city.disabled=0;
document.search_form.city.selectedIndex = 0
document.search_form.city.length=2;

document.search_form.city.options[0].text = "Select Location";
document.search_form.city.options[0].value = "";
document.search_form.city.options[1].text = "Tunis";
document.search_form.city.options[1].value = "Tunis";


}


}if (document.search_form.area.selectedIndex == 2)
{if (document.search_form.location.selectedIndex == 1)
{


document.search_form.city.disabled=0;
document.search_form.city.selectedIndex = 0
document.search_form.city.length=2;

document.search_form.city.options[0].text = "Select Town";
document.search_form.city.options[0].value = "";
document.search_form.city.options[1].text = "Buenos Aires";
document.search_form.city.options[1].value = "Buenos Aires";


}


if (document.search_form.location.selectedIndex == 2)
{


document.search_form.city.disabled=0;
document.search_form.city.selectedIndex = 0
document.search_form.city.length=2;

document.search_form.city.options[0].text = "Select Town";
document.search_form.city.options[0].value = "";
document.search_form.city.options[1].text = "Brazilia";
document.search_form.city.options[1].value = "Brazilia";


}


if (document.search_form.location.selectedIndex == 3)
{


document.search_form.city.disabled=0;
document.search_form.city.selectedIndex = 0
document.search_form.city.length=5;

document.search_form.city.options[0].text = "Select Town";
document.search_form.city.options[0].value = "";
document.search_form.city.options[1].text = "Montreal";
document.search_form.city.options[1].value = "Montreal";
document.search_form.city.options[2].text = "Ottawa";
document.search_form.city.options[2].value = "Ottawa";
document.search_form.city.options[3].text = "Quebec";
document.search_form.city.options[3].value = "Quebec";
document.search_form.city.options[4].text = "Toronto";
document.search_form.city.options[4].value = "Toronto";


}


if (document.search_form.location.selectedIndex == 4)
{


document.search_form.city.disabled=0;
document.search_form.city.selectedIndex = 0
document.search_form.city.length=5;

document.search_form.city.options[0].text = "Select Location";
document.search_form.city.options[0].value = "";
document.search_form.city.options[1].text = "Chicago";
document.search_form.city.options[1].value = "Chicago";
document.search_form.city.options[2].text = "Los Angeles";
document.search_form.city.options[2].value = "Los Angeles";
document.search_form.city.options[3].text = "Miami";
document.search_form.city.options[3].value = "Miami";
document.search_form.city.options[4].text = "Washington";
document.search_form.city.options[4].value = "Washington";


}


}if (document.search_form.area.selectedIndex == 3)
{if (document.search_form.location.selectedIndex == 1)
{


document.search_form.city.disabled=0;
document.search_form.city.selectedIndex = 0
document.search_form.city.length=4;

document.search_form.city.options[0].text = "Select Town";
document.search_form.city.options[0].value = "";
document.search_form.city.options[1].text = "Beijing";
document.search_form.city.options[1].value = "Beijing";
document.search_form.city.options[2].text = "Hong Kong";
document.search_form.city.options[2].value = "Hong Kong";
document.search_form.city.options[3].text = "Shanghai";
document.search_form.city.options[3].value = "Shanghai";


}


if (document.search_form.location.selectedIndex == 2)
{


document.search_form.city.disabled=0;
document.search_form.city.selectedIndex = 0
document.search_form.city.length=3;

document.search_form.city.options[0].text = "Select Town";
document.search_form.city.options[0].value = "";
document.search_form.city.options[1].text = "Osaka";
document.search_form.city.options[1].value = "Osaka";
document.search_form.city.options[2].text = "Tokyo";
document.search_form.city.options[2].value = "Tokyo";


}


if (document.search_form.location.selectedIndex == 3)
{


document.search_form.city.disabled=0;
document.search_form.city.selectedIndex = 0
document.search_form.city.length=2;

document.search_form.city.options[0].text = "Select Town";
document.search_form.city.options[0].value = "";
document.search_form.city.options[1].text = "Moscow";
document.search_form.city.options[1].value = "Moscow";


}


if (document.search_form.location.selectedIndex == 4)
{


document.search_form.city.disabled=0;
document.search_form.city.selectedIndex = 0
document.search_form.city.length=4;

document.search_form.city.options[0].text = "Select Town";
document.search_form.city.options[0].value = "";
document.search_form.city.options[1].text = "Bangkok";
document.search_form.city.options[1].value = "Bangkok";
document.search_form.city.options[2].text = "Chiang Mai";
document.search_form.city.options[2].value = "Chiang Mai";
document.search_form.city.options[3].text = "Hua Hin";
document.search_form.city.options[3].value = "Hua Hin";


}


if (document.search_form.location.selectedIndex == 5)
{


document.search_form.city.disabled=0;
document.search_form.city.selectedIndex = 0
document.search_form.city.length=4;

document.search_form.city.options[0].text = "Select Location";
document.search_form.city.options[0].value = "";
document.search_form.city.options[1].text = "Ankara";
document.search_form.city.options[1].value = "Ankara";
document.search_form.city.options[2].text = "Bodrum";
document.search_form.city.options[2].value = "Bodrum";
document.search_form.city.options[3].text = "Istanbul";
document.search_form.city.options[3].value = "Istanbul";


}


}if (document.search_form.area.selectedIndex == 4)
{if (document.search_form.location.selectedIndex == 1)
{


document.search_form.city.disabled=0;
document.search_form.city.selectedIndex = 0
document.search_form.city.length=31;

document.search_form.city.options[0].text = "Select Town";
document.search_form.city.options[0].value = "";
document.search_form.city.options[1].text = " Eisenstadt";
document.search_form.city.options[1].value = " Eisenstadt";
document.search_form.city.options[2].text = "Anif";
document.search_form.city.options[2].value = "Anif";
document.search_form.city.options[3].text = "Attnang-Puchheim";
document.search_form.city.options[3].value = "Attnang-Puchheim";
document.search_form.city.options[4].text = "Bad Aussee";
document.search_form.city.options[4].value = "Bad Aussee";
document.search_form.city.options[5].text = "Bad Ischl";
document.search_form.city.options[5].value = "Bad Ischl";
document.search_form.city.options[6].text = "Bad Kleinkirchheim";
document.search_form.city.options[6].value = "Bad Kleinkirchheim";
document.search_form.city.options[7].text = "Baden bei Wien";
document.search_form.city.options[7].value = "Baden bei Wien";
document.search_form.city.options[8].text = "Durrnberg";
document.search_form.city.options[8].value = "Durrnberg";
document.search_form.city.options[9].text = "Ellmau";
document.search_form.city.options[9].value = "Ellmau";
document.search_form.city.options[10].text = "Fischamend";
document.search_form.city.options[10].value = "Fischamend";
document.search_form.city.options[11].text = "Fulpmes";
document.search_form.city.options[11].value = "Fulpmes";
document.search_form.city.options[12].text = "Fuschl am See";
document.search_form.city.options[12].value = "Fuschl am See";
document.search_form.city.options[13].text = "Graz";
document.search_form.city.options[13].value = "Graz";
document.search_form.city.options[14].text = "Hall in Tirol";
document.search_form.city.options[14].value = "Hall in Tirol";
document.search_form.city.options[15].text = "Holzgau";
document.search_form.city.options[15].value = "Holzgau";
document.search_form.city.options[16].text = "Innsbruck";
document.search_form.city.options[16].value = "Innsbruck";
document.search_form.city.options[17].text = "Kirchberg in Tirol";
document.search_form.city.options[17].value = "Kirchberg in Tirol";
document.search_form.city.options[18].text = "Kitzbuhel";
document.search_form.city.options[18].value = "Kitzbuhel";
document.search_form.city.options[19].text = "Klagenfurt";
document.search_form.city.options[19].value = "Klagenfurt";
document.search_form.city.options[20].text = "Lech am Arlberg";
document.search_form.city.options[20].value = "Lech am Arlberg";
document.search_form.city.options[21].text = "Lermoos";
document.search_form.city.options[21].value = "Lermoos";
document.search_form.city.options[22].text = "Linz";
document.search_form.city.options[22].value = "Linz";
document.search_form.city.options[23].text = "Maria Worth";
document.search_form.city.options[23].value = "Maria Worth";
document.search_form.city.options[24].text = "Mieders";
document.search_form.city.options[24].value = "Mieders";
document.search_form.city.options[25].text = "Mittersill";
document.search_form.city.options[25].value = "Mittersill";
document.search_form.city.options[26].text = "Neustift im Stubaital";
document.search_form.city.options[26].value = "Neustift im Stubaital";
document.search_form.city.options[27].text = "Reith bei Kitzbuhel";
document.search_form.city.options[27].value = "Reith bei Kitzbuhel";
document.search_form.city.options[28].text = "Salzburg";
document.search_form.city.options[28].value = "Salzburg";
document.search_form.city.options[29].text = "Sankt Johann in Tirol";
document.search_form.city.options[29].value = "Sankt Johann in Tirol";
document.search_form.city.options[30].text = "Vienna";
document.search_form.city.options[30].value = "Vienna";


}


if (document.search_form.location.selectedIndex == 2)
{


document.search_form.city.disabled=0;
document.search_form.city.selectedIndex = 0
document.search_form.city.length=6;

document.search_form.city.options[0].text = "Select Town";
document.search_form.city.options[0].value = "";
document.search_form.city.options[1].text = "Brugge";
document.search_form.city.options[1].value = "Brugge";
document.search_form.city.options[2].text = "Brussels";
document.search_form.city.options[2].value = "Brussels";
document.search_form.city.options[3].text = "Erpe-Mere";
document.search_form.city.options[3].value = "Erpe-Mere";
document.search_form.city.options[4].text = "Genk";
document.search_form.city.options[4].value = "Genk";
document.search_form.city.options[5].text = "Libramont";
document.search_form.city.options[5].value = "Libramont";


}


if (document.search_form.location.selectedIndex == 3)
{


document.search_form.city.disabled=0;
document.search_form.city.selectedIndex = 0
document.search_form.city.length=2;

document.search_form.city.options[0].text = "Select Town";
document.search_form.city.options[0].value = "";
document.search_form.city.options[1].text = "Sofia";
document.search_form.city.options[1].value = "Sofia";


}


if (document.search_form.location.selectedIndex == 4)
{


document.search_form.city.disabled=0;
document.search_form.city.selectedIndex = 0
document.search_form.city.length=2;

document.search_form.city.options[0].text = "Select Town";
document.search_form.city.options[0].value = "";
document.search_form.city.options[1].text = "Prague";
document.search_form.city.options[1].value = "Prague";


}


if (document.search_form.location.selectedIndex == 5)
{


document.search_form.city.disabled=0;
document.search_form.city.selectedIndex = 0
document.search_form.city.length=2;

document.search_form.city.options[0].text = "Select Town";
document.search_form.city.options[0].value = "";
document.search_form.city.options[1].text = "Copenhagen";
document.search_form.city.options[1].value = "Copenhagen";


}


if (document.search_form.location.selectedIndex == 6)
{


document.search_form.city.disabled=0;
document.search_form.city.selectedIndex = 0
document.search_form.city.length=2;

document.search_form.city.options[0].text = "Select Town";
document.search_form.city.options[0].value = "";
document.search_form.city.options[1].text = "Helsinki";
document.search_form.city.options[1].value = "Helsinki";


}


if (document.search_form.location.selectedIndex == 7)
{


document.search_form.city.disabled=0;
document.search_form.city.selectedIndex = 0
document.search_form.city.length=5;

document.search_form.city.options[0].text = "Select Town";
document.search_form.city.options[0].value = "";
document.search_form.city.options[1].text = "Cannes";
document.search_form.city.options[1].value = "Cannes";
document.search_form.city.options[2].text = "Lyon";
document.search_form.city.options[2].value = "Lyon";
document.search_form.city.options[3].text = "Marseille";
document.search_form.city.options[3].value = "Marseille";
document.search_form.city.options[4].text = "Paris";
document.search_form.city.options[4].value = "Paris";


}


if (document.search_form.location.selectedIndex == 8)
{


document.search_form.city.disabled=0;
document.search_form.city.selectedIndex = 0
document.search_form.city.length=8;

document.search_form.city.options[0].text = "Select Town";
document.search_form.city.options[0].value = "";
document.search_form.city.options[1].text = "Berlin";
document.search_form.city.options[1].value = "Berlin";
document.search_form.city.options[2].text = "Dusseldorf";
document.search_form.city.options[2].value = "Dusseldorf";
document.search_form.city.options[3].text = "Frankfurt am Main";
document.search_form.city.options[3].value = "Frankfurt am Main";
document.search_form.city.options[4].text = "Hanburg";
document.search_form.city.options[4].value = "Hanburg";
document.search_form.city.options[5].text = "Lubeck";
document.search_form.city.options[5].value = "Lubeck";
document.search_form.city.options[6].text = "Munich";
document.search_form.city.options[6].value = "Munich";
document.search_form.city.options[7].text = "Wiesbaden";
document.search_form.city.options[7].value = "Wiesbaden";


}


if (document.search_form.location.selectedIndex == 9)
{


document.search_form.city.disabled=0;
document.search_form.city.selectedIndex = 0
document.search_form.city.length=9;

document.search_form.city.options[0].text = "Select Town";
document.search_form.city.options[0].value = "";
document.search_form.city.options[1].text = "Athens";
document.search_form.city.options[1].value = "Athens";
document.search_form.city.options[2].text = "Chania";
document.search_form.city.options[2].value = "Chania";
document.search_form.city.options[3].text = "Hersonissos";
document.search_form.city.options[3].value = "Hersonissos";
document.search_form.city.options[4].text = "Korfu";
document.search_form.city.options[4].value = "Korfu";
document.search_form.city.options[5].text = "Pelio";
document.search_form.city.options[5].value = "Pelio";
document.search_form.city.options[6].text = "Rhodes";
document.search_form.city.options[6].value = "Rhodes";
document.search_form.city.options[7].text = "Santorini";
document.search_form.city.options[7].value = "Santorini";
document.search_form.city.options[8].text = "Thessaloniki";
document.search_form.city.options[8].value = "Thessaloniki";


}


if (document.search_form.location.selectedIndex == 10)
{


document.search_form.city.disabled=0;
document.search_form.city.selectedIndex = 0
document.search_form.city.length=2;

document.search_form.city.options[0].text = "Select Town";
document.search_form.city.options[0].value = "";
document.search_form.city.options[1].text = "Budapest";
document.search_form.city.options[1].value = "Budapest";


}


if (document.search_form.location.selectedIndex == 11)
{


document.search_form.city.disabled=0;
document.search_form.city.selectedIndex = 0
document.search_form.city.length=8;

document.search_form.city.options[0].text = "Select Town";
document.search_form.city.options[0].value = "";
document.search_form.city.options[1].text = "Bologna";
document.search_form.city.options[1].value = "Bologna";
document.search_form.city.options[2].text = "Genoa";
document.search_form.city.options[2].value = "Genoa";
document.search_form.city.options[3].text = "Milan";
document.search_form.city.options[3].value = "Milan";
document.search_form.city.options[4].text = "Palermo";
document.search_form.city.options[4].value = "Palermo";
document.search_form.city.options[5].text = "Perugia";
document.search_form.city.options[5].value = "Perugia";
document.search_form.city.options[6].text = "Rome";
document.search_form.city.options[6].value = "Rome";
document.search_form.city.options[7].text = "Venice";
document.search_form.city.options[7].value = "Venice";


}


if (document.search_form.location.selectedIndex == 12)
{


document.search_form.city.disabled=0;
document.search_form.city.selectedIndex = 0
document.search_form.city.length=2;

document.search_form.city.options[0].text = "Select Town";
document.search_form.city.options[0].value = "";
document.search_form.city.options[1].text = "Luxembourg";
document.search_form.city.options[1].value = "Luxembourg";


}


if (document.search_form.location.selectedIndex == 13)
{


document.search_form.city.disabled=0;
document.search_form.city.selectedIndex = 0
document.search_form.city.length=4;

document.search_form.city.options[0].text = "Select Town";
document.search_form.city.options[0].value = "";
document.search_form.city.options[1].text = "Amsterdam";
document.search_form.city.options[1].value = "Amsterdam";
document.search_form.city.options[2].text = "Eindhoven";
document.search_form.city.options[2].value = "Eindhoven";
document.search_form.city.options[3].text = "Rotterdam";
document.search_form.city.options[3].value = "Rotterdam";


}


if (document.search_form.location.selectedIndex == 14)
{


document.search_form.city.disabled=0;
document.search_form.city.selectedIndex = 0
document.search_form.city.length=2;

document.search_form.city.options[0].text = "Select Town";
document.search_form.city.options[0].value = "";
document.search_form.city.options[1].text = "Oslo";
document.search_form.city.options[1].value = "Oslo";


}


if (document.search_form.location.selectedIndex == 15)
{


document.search_form.city.disabled=0;
document.search_form.city.selectedIndex = 0
document.search_form.city.length=3;

document.search_form.city.options[0].text = "Select Town";
document.search_form.city.options[0].value = "";
document.search_form.city.options[1].text = "Lisbon";
document.search_form.city.options[1].value = "Lisbon";
document.search_form.city.options[2].text = "Porto";
document.search_form.city.options[2].value = "Porto";


}


if (document.search_form.location.selectedIndex == 16)
{


document.search_form.city.disabled=0;
document.search_form.city.selectedIndex = 0
document.search_form.city.length=2;

document.search_form.city.options[0].text = "Select Town";
document.search_form.city.options[0].value = "";
document.search_form.city.options[1].text = "Bucharest";
document.search_form.city.options[1].value = "Bucharest";


}


if (document.search_form.location.selectedIndex == 17)
{


document.search_form.city.disabled=0;
document.search_form.city.selectedIndex = 0
document.search_form.city.length=2;

document.search_form.city.options[0].text = "Select Town";
document.search_form.city.options[0].value = "";
document.search_form.city.options[1].text = "Bratislava";
document.search_form.city.options[1].value = "Bratislava";


}


if (document.search_form.location.selectedIndex == 18)
{


document.search_form.city.disabled=0;
document.search_form.city.selectedIndex = 0
document.search_form.city.length=7;

document.search_form.city.options[0].text = "Select Town";
document.search_form.city.options[0].value = "";
document.search_form.city.options[1].text = "Barcelona";
document.search_form.city.options[1].value = "Barcelona";
document.search_form.city.options[2].text = "Cordoba";
document.search_form.city.options[2].value = "Cordoba";
document.search_form.city.options[3].text = "Granada";
document.search_form.city.options[3].value = "Granada";
document.search_form.city.options[4].text = "Madrid";
document.search_form.city.options[4].value = "Madrid";
document.search_form.city.options[5].text = "Toledo";
document.search_form.city.options[5].value = "Toledo";
document.search_form.city.options[6].text = "Valencia";
document.search_form.city.options[6].value = "Valencia";


}


if (document.search_form.location.selectedIndex == 19)
{


document.search_form.city.disabled=0;
document.search_form.city.selectedIndex = 0
document.search_form.city.length=2;

document.search_form.city.options[0].text = "Select Town";
document.search_form.city.options[0].value = "";
document.search_form.city.options[1].text = "Stockholm";
document.search_form.city.options[1].value = "Stockholm";


}


if (document.search_form.location.selectedIndex == 20)
{


document.search_form.city.disabled=0;
document.search_form.city.selectedIndex = 0
document.search_form.city.length=3;

document.search_form.city.options[0].text = "Select Town";
document.search_form.city.options[0].value = "";
document.search_form.city.options[1].text = "Geneva";
document.search_form.city.options[1].value = "Geneva";
document.search_form.city.options[2].text = "Zurich";
document.search_form.city.options[2].value = "Zurich";


}


if (document.search_form.location.selectedIndex == 21)
{


document.search_form.city.disabled=0;
document.search_form.city.selectedIndex = 0
document.search_form.city.length=5;

document.search_form.city.options[0].text = "Select Town";
document.search_form.city.options[0].value = "";
document.search_form.city.options[1].text = "Liverpool";
document.search_form.city.options[1].value = "Liverpool";
document.search_form.city.options[2].text = "London";
document.search_form.city.options[2].value = "London";
document.search_form.city.options[3].text = "Manchester";
document.search_form.city.options[3].value = "Manchester";
document.search_form.city.options[4].text = "Scotland";
document.search_form.city.options[4].value = "Scotland";


}


}

}


