You're certainly going about this the hard way!
Assuming the formfield you want to go to has an internal bookmark name (eg "Text27"), then add a macro like the following to your document and make it the 'on exit' macro for the formfield you want to get there from.
Code:
Sub MyNextField()
ActiveDocument.FormFields("Text27").Select
End Sub