$(document).ready(function(){
	$(".subBut").click(function(){
		if($(this).attr("id")=="pay-button") {
			$(this).removeAttr("href");
			$(this).removeAttr("class");
		}
		$(this).parent("form").submit();
		return false;
	});
});