After trying a dozen different things I ended up using .reset() on the form which worked fine once. Obviously with Ajax it was not resetting to the last value but the original state of the DOM.
I ended up using a plain old hidden input named current_value and updating/retrieving as necessary. I was sure there was an "inline" way to do it. I probably should have just gone with the hidden field from the jump. Thanks for looking.