left up right
Looking up the CDs
            <xsl:key name="lookupartist" match="cd/artist" use="." />
<xsl:key name="pricekey" match="price" use="@ticket" />

<xsl:template match="/cdlist">
 <h3>CDs by Louis Armstrong</h3>

 <xsl:for-each select="key('lookupartist','Armstrong, Louis')" >
  <pre><text>Title: </text><xsl:value-of select="../title" />
   <xsl:variable name="pricecolor" select="../@price" />
   <text> ,Price: </text><xsl:value-of select="key('pricekey' , $pricecolor)" />
  </pre>
 </xsl:for-each>
</xsl:template>

Result