function visualizzaMenu(indice) {

var testo ="";

switch (indice) {
	case 0: {
		testo = "COME NASCE UNA PIASTRELLA";
		break;
	               }
	case 1: {
		testo = "PROCESSO PRODUTTIVO";
		break;
	               }
	case 2: {
		testo = "PREPARAZIONE DELL'IMPASTO";
		break;
	               }
	case 3: {
		testo = "FORMATURA";
		break;
	               }
	case 4: {
		testo = "ESSICCAMENTO";
		break;
	               }
	case 5: {
		testo = "SMALTATURA";
		break;
	               }
	case 6: {
		testo = "COTTURA";
		break;
	               }
	case 7: {
		testo = "SCELTA";
		break;
	               }

	case 8: {
		testo = "SCEGLIERE LA CERAMICA";
		break;
	               }
	case 9: {
		testo = "L'AMBIENTE";
	               }
 }


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>PROCESSO PRODUTTIVO");
document.write("<option>PREPARAZIONE DELL'IMPASTO");
document.write("<option>FORMATURA");
document.write("<option>ESSICCAMENTO");
document.write("<option>SMALTATURA");
document.write("<option>COTTURA");
document.write("<option>SCELTA");
document.write("<option>");
document.write("<option>SCEGLIERE LA CERAMICA");
document.write("<option>L'AMBIENTE");
document.write("</select>");
document.write("</form>");

return(0);

}