Your output is not well-formed XML, so you can't construct it using XSLT.
Instead of
<utcc:OrganisationName(1)>NO1</utcc:OrganisationName(1)>
why not go for
<utcc:OrganisationName seq="1">NO1</utcc:OrganisationName>
This can be achieved very easily using position() or xsl:number.
Michael Kay
http://www.saxonica.com/
Author, XSLT Programmer's Reference and XPath 2.0 Programmer's Reference