function isValidText(the_value)
{
	
var iChars = "!@#$%^&*()+=-[]\';,./{}|\":<>?";

 for (var i = 0; i < the_value.length; i++) 
 {
  		
		if (iChars.indexOf(the_value.charAt(i)) != -1) 
  			{
			
			response = 'Containts special characters. \n These are not allowed.\n Please remove them and try again.';				
			return response;	
			
			
  			}
 }	
		 

	return true;
	
}





