var http = getHTTPObject(); // Create the HTTP Object
var requestObj = "reqProfile.php?section=";

// page
function init()
{
   fetchCustomText ('33Years');
}

function fetchCustomText (section)
{
	http.open("GET", requestObj + section, true); 
	http.onreadystatechange = displayCustomText;
	http.send(null);
}

function displayCustomText ()
{
	if (http.readyState == 4) 
	{
	   document.getElementById ('customText').innerHTML = http.responseText;
   }
}