First use the database you are looking for.
Then run as below:
SELECT name, ftcatid FROM sysobjects WHERE ftcatid > 0
For each returning table name (which are the tables with Full-Text Index), run below command:
EXEC sp_fulltext_table 'tblName', 'drop'
After all drop the Full-Text Catalog with:
DROP FULLTEXT CATALOG catalogName