function bahnselect_change(stadt)
{

	anzahl=1
	if (stadt != "0")
	{
		for ( var i=0; i < bliste_array.length; i+=3)
		{
			if(bliste_array[i+2] == stadt)
			{
				anzahl++
				bahnid = bliste_array[i]
				bahntext = bliste_array[i+1]
			}
		}
		if(anzahl > 2)
		{
			document.anfahrt.autobahn.options[0].text = "<--- Autobahn waehlen --->"
			document.anfahrt.autobahn.options[0].value = "0"
			document.anfahrt.autobahn.length = anzahl
			var j=1
			for ( var i=0; i < bliste_array.length; i+=3)
			{

				 if(bliste_array[i+2] == stadt)
				 {
				    document.anfahrt.autobahn.options[j].value = bliste_array[i]
					document.anfahrt.autobahn.options[j].text = bliste_array[i+1]
					j++
				 }
			}
		}
		else if(anzahl == 2) {


			document.anfahrt.autobahn.length = 1
			document.anfahrt.autobahn.options[0].value = bahnid
			document.anfahrt.autobahn.options[0].text = bahntext
		}

	}
	else
	{
		document.anfahrt.autobahn.length = anzahl
		document.anfahrt.autobahn.options[0].text = "<--- Autobahn waehlen --->"
		document.anfahrt.autobahn.options[0].value = "0"
		document.anfahrt.autobahn.selectedIndex = 0

	}

}
function stadtselect_change(land)
{


	anzahl=1
	if (land > 0)
	{
		for ( var i=0; i < sliste_array.length; i+=3)
		{
			if(sliste_array[i+2] == land)
			{
				anzahl++
			}
		}
		document.anfahrt.stadt.options[0].text = "<--- Stadt waehlen --->"
		document.anfahrt.stadt.options[0].value = "0"
		document.anfahrt.stadt.length = anzahl
		var j=1
		for ( var i=0; i < sliste_array.length; i+=3)
		{

			 if(sliste_array[i+2] == land)
			 {
			    document.anfahrt.stadt.options[j].value = sliste_array[i+1]
				document.anfahrt.stadt.options[j].text = sliste_array[i+1]
				j++
			 }
		}
	}
	else
	{
		document.anfahrt.stadt.length = anzahl
		document.anfahrt.stadt.options[0].text = "<--- Stadt waehlen --->"
		document.anfahrt.stadt.options[0].value = "0"
		document.anfahrt.stadt.selectedIndex = 0

		document.anfahrt.autobahn.length = anzahl
		document.anfahrt.autobahn.options[0].text = "<--- Autobahn waehlen --->"
		document.anfahrt.autobahn.options[0].value = "0"
		document.anfahrt.autobahn.selectedIndex = 0
	}

}
function start(land)
{
	if(land>0)
	{
		stadtselect_change(land)
		bahnselect_change(document.anfahrt.stadt.options[document.anfahrt.stadt.selectedIndex].value)
	}
	else
	{
		document.anfahrt.autobahn.length = 9
		document.anfahrt.autobahn.options[0].text = "<--- Autobahn waehlen --->"
		document.anfahrt.autobahn.options[0].value = "0"
		document.anfahrt.autobahn.selectedIndex = 0

		for (var i=1; i<=8; i++)
		{
			document.anfahrt.autobahn.options[i].text = ""
		}

		document.anfahrt.stadt.length = 9
		document.anfahrt.stadt.options[0].text = "<--- Stadt waehlen --->"
		document.anfahrt.stadt.options[0].value = "0"
		document.anfahrt.stadt.selectedIndex = 0

		for (var i=1; i<=8; i++)
		{
			document.anfahrt.stadt.options[i].text = ""
		}
	}
}

function chkformroute()
{
	if(document.anfahrt.land.options[document.anfahrt.land.selectedIndex].value == 0) {
		alert("Bitte waehlen Sie zunaechst ein Land")
		document.anfahrt.land.focus()
		return false
	}
	else if(document.anfahrt.stadt.options[document.anfahrt.stadt.selectedIndex].value == 0) {
		alert("Bitte waehlen Sie eine Stadt")
		document.anfahrt.stadt.focus()
		return false
	}
	else if(document.anfahrt.autobahn.options[document.anfahrt.autobahn.selectedIndex].value == 0) {
		alert("Bitte waehlen Sie eine Autobahn")
		document.anfahrt.autobahn.focus()
		return false
	}
}


