You could try
Code:
<xsl:template match="/">
<xsl:copy-of select="*/*[2]"/>
</xsl:template>
then although I think you might complain then that the namespace declarations on the root are copied through.
If you don't want them then you need more code e.g.
Code:
<xsl:template match="/">
<xsl:apply-templates select="*/*[2]"/>
</xsl:template>
<xsl:template match="*">
<xsl:element name="{name()}" namespace="{namespace-uri()}">
<xsl:copy-of select="@*"/>
</xsl:apply-templates/>
</xsl:element>
</xsl:template>
or if you use XSLT 2.0 you could make use of its options not to copy namespaces.