The submit button will immediately submit the form it is in, and the browser will leave the page (and the JavaScript execution environment from which the Ajax request is being made).
Cancel the default behaviour of the form submission when you want to use JavaScript instead.
onclick="sbt(); return false;"
(I'd look at using a modern approach to event binding instead of onclick
attributes though).