Trying to put in field "pagar" the calculated value of "precio" * 15% but I don't know why it is not working :S
<% form_for @libro, :html => { :multipart => true } do |f| %>
<%= f.label "Precio (si es venta):" %>
<%= f.text_field :precio %>
<%= observe_field :libro_precio,
:frequency => 0.25,
:update => :libro_pagar,
:with => 'value*0.15'
%>
<%= f.label "A pagar (si es venta):" %>
<%= f.text_field :pagar %>
<% end %>