What you need to do is get submitChange() to be executed when the document/window has loaded.
This can be performed in a few ways on client side.
HTML:
<body onload="submitChange()">
</body>
JavaScript:
window.onload = function() {
submitChange();
};
jQuery:
$(document).ready(function() {
submitChange();
});
I believe the above 3 techniques should work.