<button type="submit" class="btn"><?php 
echo JText::_('JSEARCH_FILTER_SUBMIT');
?>
</button>
			<button type="button" onclick="document.id('filter_search').value='';this.form.submit();"><?php 
echo JText::_('JSEARCH_FILTER_CLEAR');
?>
</button>
		</div>
		<div class="filter-select fltrt">
            <select name="filter_artist" class="inputbox" onchange="this.form.submit()">
				<option value=""><?php 
echo JText::_('COM_PLAYJOOM_FILTER_ARTIST');
?>
</option>
				<?php 
echo JHtml::_('select.options', PlayJoomHelper::getOptionsForAlbumsView('artist'), 'value', 'text', $this->state->get('filter.artist'));
?>
				
			</select>
			<select name="filter_category_id" class="inputbox" onchange="this.form.submit()">
				<option value=""><?php 
echo JText::_('COM_PLAYJOOM_FILTER_GENRE');
?>
</option>
				<?php 
echo JHtml::_('select.options', JHtml::_('category.options', 'com_playjoom'), 'value', 'text', $this->state->get('filter.category_id'));
?>
			</select>
		</div>
</fieldset>