replace_html help

I have posted a similar question pls ignore that

I have a file define_sd_resolution.rhtml..In that an ajax form is there

<%= form_remote_tag :update => "update_sd_resolution_ui",                     :url => { :action => 'sd_resolution_save',                                :id => @sd_ticket.id, :sd_resolution_id=>@sd_resolution_id},                                :class => 'itilform'%>

The complete file is inside a div <div id='update_sd_resolution_ui'>

WHAT I NEED IS AFTER THE OPERATION IN ACTION sd_resolution_save TO REPLACE THE DIV WITH ANOTHER PARTIAL FILE _view_sd_resolution_details.AND I TRIED LIKE BELOW I CREATED AN RJS FILE WITH SAME NAME AS THE ACTION ie, sd_resolution_save.rjs

page[:update_sd_resolution_ui].replace_html :partial => "service_desk_part/view_sd_resolution_details", :object => @sd_ticket, :object => @hour_and_minute

THIS CALLS _view_sd_resolution_details...BUT THE RESULT I GET IS

ry { $("update_sd_resolution_ui").update("\074div id='create_sd_resolution_ui'\076\n\n\n\n\n\n\074table border=\"0\" width=\"100%\"\076\n \074tr\076\n \074td class=\"itillink1\"\076\n \n \074DDND SOME BLA.....

WHERE IS THE FAULT PLEASE HELP SIJO

here I got solution with removing :update in form_remote_tag

Sijo