I wrote for you this generic code to increment the number part of the value while maintaining the prefix part as is. You will have to take care of the rest elsewhere:
var f = this.getField("MonthlySubmission");
var v = f.value.match(/\d+$/)[0];
f.value = f.value.replace(v, util.printf("%0"+v.length+"d", Number(v)+1));
.
Visit my custom-made PDF scripts website: http://try67.blogspot.com
Contact me personally: try6767@gmail.com