If you are using a CMS you may have found that you can't upload larger files because of the default upload_max_filesize set in PHP globally.
You can override this by creating a php.ini in your public_html directory containing the following information:
upload_max_filesize = 10M
This will increase it to 10MB for your account.