
function ajaxRequest(url,param,callback)
{  
 var ajax = new Ajax.Request(url,
        {method: 'post', parameters: param,
        onComplete: callback,
        evalScripts:true,
        asynchronous:true} 
        );  
}