Originally Posted by AndrewSW
I can't see any form fields, but perhaps you have other code that I haven't seen.
Divs and spans are not self-closing:
Code:
<span id="APRIndustryCount" name="APRIndustryCount" class="labelv12"/>
// Should be
<span id="APRIndustryCount" name="APRIndustryCount" class="labelv12"></span>
Nor do they have "name" attributes (by default).
So your HTML is invalid and you will likely encounter further problems with the page.
But it's up to you
The span will get replaced dynamically as a label/textfield/textarea etc by the core(code) engine. It depends on the background logic.