An easier way: Since you are using
LIKE '%xxx%' in all your tests, just use
<option value="">Any</option> in the HTML.
That will cause your query to become (for example)
Code:
SELECT * FROM delyn WHERE description LIKE '%%' AND ...
and so of course it will match ANY description.