You can use server validation with integer validation to validate the value of:
<?php echo((isset($_FILES["uploadFieldName"]))?$_FILES["uploadFieldName"]["size"]:"") ?>
I think if it is over the max size it will have a value of the max size, so just check that the number is less than that (in bytes)
You can use the "Validated Form" bindings to re-populate the form when the validation fails.