// JavaScript Document
function show_forms(){
	//var places = document.booking_form.places_book.[document.booking_form.places_book.options.selectedIndex].value;
	var places = document.getElementById('places_book').selectedIndex;
    //alert(places);
for(i=1;i<=12;i++){
	document.getElementById('box'+i).style.display='none';
	//alert(i);
}
for(i=1;i<=places;i++){
	document.getElementById('box'+i).style.display='';
	//alert(i);
}

}
function show_emails(){
	//var places = document.booking_form.places_book.[document.booking_form.places_book.options.selectedIndex].value;
	var places = document.getElementById('places_book').selectedIndex;
    //alert(places);
for(i=1;i<=12;i++){
	document.getElementById('emailbox'+i).style.display='none';
	//alert(i);
}
for(i=1;i<=places;i++){
	document.getElementById('emailbox'+i).style.display='';
	//alert(i);
}

}
