<!-- Arrays erzeugen-->
var list1array = new Array()
var list1value = new Array()

var list2array = new Array()
var list2value = new Array()

var list3array = new Array()
var list3value = new Array()

var list4array = new Array()
var list4value = new Array()

var list5array = new Array()
var list5value = new Array()

<!-- Arrays fllen -->
list1array[1] = "Face (79.00 Euro - 55 min.)"
list1value[1] = "Face (79.00 Euro - 55 min.)"
list1array[2] = "Body (85.00 Euro - 85 min.)"
list1value[2] = "Body (85.00 Euro - 85 min.)"
list1array[3] = "Kombination (159.00 Euro - 145 min.)"
list1value[3] = "Kombination (159.00 Euro - 145 min.)"

list2array[1] = "Face (85.00 Euro - 55 min.)"
list2value[1] = "Face (85.00 Euro - 55 min.)"
list2array[2] = "Body (89.00 Euro - 85 min.)"
list2value[2] = "Body (89.00 Euro - 85 min.)"
list2array[3] = "Kombination (169.00 Euro - 145 min.)"
list2value[3] = "Kombination (169.00 Euro - 145 min.)"

list3array[1] = "Face (65.00 Euro - 55 min.)"
list3value[1] = "Face (65.00 Euro - 55 min.)"
list3array[2] = "Body (69.00 Euro - 85 min.)"
list3value[2] = "Body (69.00 Euro - 85 min.)"
list3array[3] = "Kombination (129.00 Euro - 145 min.)"
list3value[3] = "Kombination (129.00 Euro - 145 min.)"

// Hot-Stones
list4array[1] = "Body (69.00 Euro - 85 min.)"
list4value[1] = "Body (69.00 Euro - 85 min.)"

list5array[1] = "Face (45.00 Euro - 55 min.)"
list5value[1] = "Face (45.00 Euro - 55 min.)"
list5array[2] = "Body (68.00 Euro - 85 min.)"
list5value[2] = "Body (68.00 Euro - 85 min.)"
list5array[3] = "Kombination (108.00 Euro - 145 min.)"
list5value[3] = "Kombination (108.00 Euro - 145 min.)"

<!-- eigentliche Funktion zum wechseln bei onchange -->
function sublist(selecteditem){
document.formular.stelle.length = 0; 

if (selecteditem=="") {
	document.formular.stelle.options[0]= new Option("bitte w" + unescape('%E4') + "hlen")
	}
	

if (selecteditem=="Ayurveda") {
	document.formular.stelle.options[0]= new Option("jetzt hier w" + unescape('%E4') + "hlen")
	document.formular.stelle.options[0].value= ""
		for(var count=1; count < list2array.length; count++) {
		document.formular.stelle.options[count]= new Option(list2array[count])
		document.formular.stelle.options[count].value= list2value[count]
		}
	}
	
	
if (selecteditem=="Chi Yang") {
	
	document.formular.stelle.options[0]= new Option("jetzt hier w" + unescape('%E4') + "hlen")
	document.formular.stelle.options[0].value= ""
		for(var count=1; count < list1array.length; count++) {
		document.formular.stelle.options[count]= new Option(list1array[count])
		document.formular.stelle.options[count].value= list1value[count]
		}
	}
	
if (selecteditem=="Herbal Siam") {
	document.formular.stelle.options[0]= new Option("jetzt hier w" + unescape('%E4') + "hlen")
	document.formular.stelle.options[0].value= ""
		for(var count=1; count < list3array.length; count++) {
		document.formular.stelle.options[count]= new Option(list3array[count])
		document.formular.stelle.options[count].value= list3value[count]
		}
	}
	
if (selecteditem=="Hot Stones") {
	document.formular.stelle.options[0]= new Option("jetzt hier w" + unescape('%E4') + "hlen")
	document.formular.stelle.options[0].value= ""
		for(var count=1; count < list4array.length; count++) {
		document.formular.stelle.options[count]= new Option(list4array[count])
		document.formular.stelle.options[count].value= list4value[count]
		}
	}
	
if (selecteditem=="Hot Chocolate") {
	document.formular.stelle.options[0]= new Option("jetzt hier w" + unescape('%E4') + "hlen")
	document.formular.stelle.options[0].value= ""
		for(var count=1; count < list5array.length; count++) {
		document.formular.stelle.options[count]= new Option(list5array[count])
		document.formular.stelle.options[count].value= list5value[count]
		}
	}
	
}



function sublist2(selecteditem){
document.formular.stelle2.length = 0 

if (selecteditem=="") {
	document.formular.stelle2.options[0]= new Option("bitte w" + unescape('%E4') + "hlen")
	}
	
if (selecteditem=="Chi Yang") {
	document.formular.stelle2.options[0]= new Option("bitte noch hier w" + unescape('%E4') + "hlen")
	document.formular.stelle2.options[0].value= ""
		for(var count=1; count < list1array.length; count++) {
		document.formular.stelle2.options[count]= new Option(list1array[count])
		document.formular.stelle2.options[count].value= list1value[count]
		}
	}
if (selecteditem=="Ayurveda") {
	document.formular.stelle2.options[0]= new Option("bitte noch hier w" + unescape('%E4') + "hlen")
	document.formular.stelle2.options[0].value= ""
		for(var count=1; count < list2array.length; count++) {
		document.formular.stelle2.options[count]= new Option(list2array[count])
		document.formular.stelle2.options[count].value= list2value[count]
		}
	}
	
if (selecteditem=="Herbal Siam") {
	document.formular.stelle2.options[0]= new Option("bitte noch hier w" + unescape('%E4') + "hlen")
	document.formular.stelle2.options[0].value= ""
		for(var count=1; count < list3array.length; count++) {
		document.formular.stelle2.options[count]= new Option(list3array[count])
		document.formular.stelle2.options[count].value= list3value[count]
		}
	}
	
if (selecteditem=="Hot Stones") {
	document.formular.stelle2.options[0]= new Option("bitte noch hier w" + unescape('%E4') + "hlen")
	document.formular.stelle2.options[0].value= ""
		for(var count=1; count < list4array.length; count++) {
		document.formular.stelle2.options[count]= new Option(list4array[count])
		document.formular.stelle2.options[count].value= list4value[count]
		}
	}
	
if (selecteditem=="Hot Chocolate") {
	document.formular.stelle2.options[0]= new Option("bitte noch hier w" + unescape('%E4') + "hlen")
	document.formular.stelle2.options[0].value= ""
		for(var count=1; count < list5array.length; count++) {
		document.formular.stelle2.options[count]= new Option(list5array[count])
		document.formular.stelle2.options[count].value= list5value[count]
		}
	}
	
}

