That's an H1 tag ... if you remove it, you may get poorer results in search engine rankings.
Nevertheless, if you want to risk hiding it, look in your browser source ("View Source" or "View Page Source") and find where it's displayed ... ie:
HTML Code:
<div class="centerColumn" id="indexProductList">
<h1 id="productListHeading">MP3 DOWNLOADS</h1>
Note the ID next to the part you want to hide, in this case "productListHeading".
Then add it to your stylesheet, like this:
Code:
#productListHeading {display: none;}
Search engines don't like you to hide important tags like H1 though. Change at your own risk.