It's hard to say without knowing what the form will attempt to do...
Put simply, you should check every expected field on the input form to ensure that the field conforms to to the type of input you expect. For example, there are commonly available regex strings used to validate that a submitted email address, looks like a valid email address, and doesn't contain a list of email addresses etc.
If you have a list of values for a particular field, you can check the submitted value against that list. If you have a more unpredictable input field, you should have a list of characters/substrings which you don't want to be processed - this might include quote marks, slashes, semicolons, etc
You might also want to check for the length of input fields to ensure that someone's not trying to break your system with huge inputs.
It's all quite dependant on what you are trying to do.