var http12 = createRequestObject();

function handleHttpResponse12() {
  if (http12.readyState == 4) {
    response = http12.responseText;
	arrValori = response.split("||");
          document.getElementById("strut").options.length=1;       
          for(i=0;i<arrValori.length;i++)
          {
			  if (arrValori[i].split("|")[1] != '' && arrValori[i].split("|")[0] != '') {
         document.getElementById("strut").options[document.getElementById("strut").options.length] = new Option(arrValori[i].split("|")[1],arrValori[i].split("|")[0]);
			  }
          }
   }
}

function struttura_ajax(value) {
  http12.open('POST', '_lib/struttura_ajax.php', true);
  http12.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  http12.onreadystatechange = handleHttpResponse12;
  http12.send("comple="+value);
}
