 function countklick(name){
var url = 'include/countinfomaterial.cfm?name='+name;
var myAjax = new Ajax.Request(
 url,
 {method: 'POST',
 onSuccess: function(response){
 var response = response.responseText
 },
 onFailure: function(){alert('da ist etwas schief gegangen...'+response)}
 });

 }