function innitform()
{
	$("#inpCallMe").change( function() {
		if (document.forms['enquiryform'].hiddensection == 'hidden' || document.forms['enquiryform'].hiddensection == 'visible')
	  {
	  	if (document.forms['enquiryform'].hiddensection == 'hidden')
	  	{
	  		//alert('currently hidden');
	  		document.getElementById('stealthyformsection').style.display = 'block';		
	  		document.forms['enquiryform'].hiddensection = 'visible';
	  	}
	  	else
	  	{
  			//alert('currently visible');
	  		document.getElementById('stealthyformsection').style.display = 'none';		
	  		document.forms['enquiryform'].hiddensection = 'hidden';
	  	}
	  }
	  else
	  {
	  	document.getElementById('stealthyformsection').style.display = 'none';	
	  	document.forms['enquiryform'].hiddensection = 'hidden';
	  }
	  
	});

}