prova a mettere degli alert:
Codice PHP:
function cerca()
{
   var 
valorecampo document.form1.cmp20.options[document.form1.cmp20.selectedIndex].value;

   
// per l'oggetto nativo XMLHttpRequest
   
if (window.XMLHttpRequest) {
      
ricerca_pro = new XMLHttpRequest();
      
ricerca_pro.onreadystatechange ricevi;
      
ricerca_pro.open("GET""cercaregioni.asp? reg="+valorecampo,true);
      
ricerca_pro.send(null);
      
// per IE
   
} else if (window.ActiveXObject) {
      
ricerca_pro = new ActiveXObject("Microsoft.XMLHTTP");
      if (
ricerca_pro) {
         
ricerca_pro.onreadystatechange ricevi;
         
ricerca_pro.open("GET""cercaregioni.asp?    reg="+valorecampo,true);
         
ricerca_pro.send();
      }
      else
         
alert('Impossibile inizializzare XMLHttpRequest');
   }

e
Codice PHP:
function ricevi() {
   var 
strRes;
   var 
arrValori;
   if (
ricerca_pro.readyState == 4) {
      
strRes=ricerca_pro.responseText;
      
alert("Risposta Ricevuta: "+strRes);
      
document.form1.cmp21.innerHTML strRes;
   }