function showActivities(str)
{ 
document.getElementById("Waiting").style.display='block';
xmlHttp=GetXmlHttpObject(); 
if (xmlHttp==null) 
  {
  alert ("Your browser does not support AJAX!"); 
  return;
  } 
var url="f_getActivities.asp";
url=url+"?q="+str;
url=url+"&sid="+Math.random();
xmlHttp.onreadystatechange=stateChanged123;
xmlHttp.open("GET",url,true);
xmlHttp.send(null);
}

function stateChanged123() 
{ 
if (xmlHttp.readyState==4)
{ 
document.getElementById("Waiting").style.display='none';
document.getElementById("SelectActivities").innerHTML=xmlHttp.responseText;
document.getElementById("SelectActivities").style.height='auto';
ShowStep2();
saveinfo(document.getElementById('xTimeFrame').value,document.getElementById('xbudget').value,document.getElementById('xPCode').value,document.getElementById('xSuburb').value,document.getElementById('xHowManyQuotes').value);
}
}
