OK, add a new template to your xmlpackage like this :-
C#/VB.NET Code:
<xsl:template name="BFG-DropDown">
<select>
<option value="Select">Select One</option>
<xsl:for-each select="/root/EntityHelpers/*[name()=/root/Runtime/EntityName]/descendant::Entity[ParentEntityID=/root/Runtime/EntityID]">
<xsl:variable name="scName" select="aspdnsf:GetMLValue(Name)"></xsl:variable>
<option value="{aspdnsf:EntityLink(EntityID, SEName, $EntityName, 0, '')}"><xsl:value-of select="$scName" disable-output-escaping="yes"/></option>
</xsl:for-each>
</select>
</xsl:template>
& then call it where you want the dropdown to appear like this :-
C#/VB.NET Code:
<xsl:call-template name="BFG-DropDown" />
N.B. This doesn't actually do anything - it just puts the dropdown onto the page.
TTFN
BFG