Also added a dropdown with category names populated...
SELECT DISTINCT c.CategoryName AS [Text], c.CategoryName AS [Value] FROM StockItem si WITH (NOLOCK) INNER JOIN ProductCategories c WITH (NOLOCK) ON c.CategoryId = si.CategoryId ORDER BY c.CategoryName
Will Harrison