You could try this: create a new plugin using hook location newthread_form_start and code like this:
Code:
if ($foruminfo['forumid'] == X)
{
$newpost['message'] = "
(Posts in this forum need to include all the below information so please ensure you fill all fields)
1. Company Name
2. Service Advertised
3. Price
4. Estimated Time to Completion
";
}
where the X in the first line is the forumid where you want this to be inserted.