Ok
Try the follwing in the AfterUpdate event of your combo box:
DoCmd.RunCommand acCmdSaveRecord
Then in the GotFocus event on your next field:
cboYourComboBoxNameHere.Requery
One thing to bear in mind though, if you have fields on your form that are required entries then the DoCmd...