This disables the alert, but also the scroll to the first error. If your form is particularly long, you can preserve the scrolling by using this instead:
<script type="text/javascript"> wFORMS.behaviors.validation.onFail = function(b) { for (var id in b.elementsInError) { var elem = document.getElementById(id); if(elem.scrollIntoView) { elem.scrollIntoView(); } else { location.hash="#"+id; } break; } } </script>