function visualizzaMenu(indice) {

var testo ="";

switch (indice) {
	case 0: {
		testo = "WIE EINE FLIESE ENTSTEHT";
		break;
	               }
	case 1: {
		testo = "DER HERSTELLUNGSPROZESS";
		break;
	               }
	case 2: {
		testo = "AUFBEREITUNG DER MASSE";
		break;
	               }
	case 3: {
		testo = "FORMGEBUNG";
		break;
	               }
	case 4: {
		testo = "TROCKNUNG";
		break;
	               }
	case 5: {
		testo = "GLASIEREN";
		break;
	               }
	case 6: {
		testo = "BRENNEN";
		break;
	               }
	case 7: {
		testo = "SORTIERUNG";
		break;
	               }

	case 8: {
		testo = "VORZÜGE VON KERAMIK";
		break;
	               }
	case 9: {
		testo = "UMWELTFREUNDLICH";
	               }
 }
document.write("<form name='form1'>");
document.write("<select name='menu1' size='1' onchange='go(this, 1, false)'>");
document.write("<option selected>"+ testo);
document.write("<option>");
document.write("<option>DER HERSTELLUNGSPROZESS");
document.write("<option>AUFBEREITUNG DER MASSE");
document.write("<option>FORMGEBUNG");
document.write("<option>TROCKNUNG ");
document.write("<option>GLASIEREN");
document.write("<option>BRENNEN");
document.write("<option>SORTIERUNG");
document.write("<option>");
document.write("<option>VORZÜGE VON KERAMIK");
document.write("<option>UMWELTFREUNDLICH");
document.write("</select>");
document.write("</form>");

return(0);

}
