function visualizzaMenu(indice) {

var testo ="";

switch (indice) {
	case 0: {
		testo = "HOW A TILE IS BORN";
		break;
	               }
	case 1: {
		testo = "THE PRODUCTION PROCESS";
		break;
	               }
	case 2: {
		testo = "TILE BODY PREPARATION";
		break;
	               }
	case 3: {
		testo = "FORMING";
		break;
	               }
	case 4: {
		testo = "DRYING";
		break;
	               }
	case 5: {
		testo = "GLAZING";
		break;
	               }
	case 6: {
		testo = "FIRING";
		break;
	               }
	case 7: {
		testo = "SORTING";
		break;
	               }

	case 8: {
		testo = "CHOOSING CERAMICS";
		break;
	               }
	case 9: {
		testo = "ENVIRONMENT RESPECT";
	               }
 }

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>THE PRODUCTION PROCESS");
document.write("<option>TILE BODY PREPARATION");
document.write("<option>FORMING");
document.write("<option>DRYING");
document.write("<option>GLAZING");
document.write("<option>FIRING");
document.write("<option>SORTING");
document.write("<option>");
document.write("<option>CHOOSING CERAMICS");
document.write("<option>ENVIRONMENT RESPECT");
document.write("</select>");
document.write("</form>");

return(0);

}