Everything is working fine now.
I just need to do the following;
One more thing.
I need to add these option to the search box as in the example below where all it does it add the terms as additional terms to the text:
<form method=”get” id=”searchform” action=”http://musicmekka.com/”>
<select name=”cat” id=”cat”>
<option value=”LP”>LP</option>
<option value=”45″>45rpm</option>
<option value=”10″>10″</option>
<option value=”12″>12″</option>
<option value=”CD”>CD”</option>
<option value=”video laser”>video – laser</option>
</select>
<input type=”text” value=”Artist Search” name=”a” id=”a” onblur=”if (this.value == ”) {this.value = ‘Artist and Title’;}” onfocus=”if (this.value == ‘Artist Search’) {this.value = ”;}” />
</form>
</div><!– #search –>