I'm trying to use rails to change a textfield's value with a link_to_remote
<%= link_to_remote address.street, :url => {:controller => 'incidents', :action=>'street_selected', :update => "street.value" } %>
Street is the id of the textfield
my controller function renders text, but the textfield value isn't changed. How do i get this to work?