Вот так получилось
function addlist(param)
{
$.ajax({
url: 'Process.php',
data: 'drop='+encodeURIComponent(param)+'&process='+ encodeURIComponent(document.getElementById('process').value),
type: 'POST',
dataType: 'php',
success: function(msg)
{
if(parseInt(msg)!=0)
{
$('#pageContent').html(msg);
}
}
});
}