function list(valore) {
  if(valore == "seleziona") {
    document.forms[1].reset();
    return;
  } else {
    top.location.href = valore;
  }
}
