$(".ur-submit-button").click(function() {
    var $this = $(this);
    $this.text('Creating your account...');
    //$this.attr('disabled', true);
    setTimeout(function() {
        //$this.attr('disabled', false);
        $this.text('Register');
    }, 2000);
});
				