Can anyone help me with a quick question? I am trying capture the first and last iteration of a repeating element. I am using the xsl:value-of select, how can I select only the first and last occurence?

Many thanks,
-d

Code:
<xsl:for-each select="details/po">
     <tr>
          <td><xsl:value-of select="po"/></td>
     </tr>
</xsl:for-e
...