function displayMenu (Name, List){
  document.write("<select name=\""+Name+"\">");
  for (var i=0; i<List.length; i++)document.write("<option>"+List[i]+"</option>");
  document.writeln("</select>");
}

