function saveJob(array_index)
{
    var url = 'http://www.jobmeld.com/index.php/job/save/' + array_index;  
    new Ajax.Request(
                        url,
                        {
                            method: 'GET',
                            onFailure: function()
                            {
                              $('save' + array_index).innerHTML = 'Failed';
                            },
                            onSuccess: function(transport)
                            {
                              $('save' + array_index).innerHTML = transport.responseText;
                            }
                        }
                     );
}	