Hello @KBeale
Based on your requirement, this is how I would do it. This is not a standard way.
I would use a variable to control the default value of the Combobox. I will name the variable varResetCombo
On your Form's OnSuccess, add a code that will set the varResetCombo variable:
Set(varResetCombo,false);
On the default for the card, instead of just "ThisItem.'JP A Choose Seasoning'", use this
If(varResetCombo,ThisItem.'JP A Choose Seasoning',Form1.LastSubmit.'JP A Choose Seasoning')
Then on the ResetButton's OnSelect:
Set(varResetCombo,true);
In every other part of your app, above code Set(varResetCombo,true); if you want to ensure that the comboBox to be reset.