You can drop a foreign key constraint defined for a table using the DROP FOREIGN KEY clause.
ALTER [ TABLE | CLASS ] table_name DROP FOREIGN KEY constraint_name
ALTER TABLE a_tbl DROP FOREIGN KEY fk_a_tbl_id;