You can add this to the top of your procedure script. (just replace the ownerName and ProcName with the real values.
IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[OwnerName].[ProcName]') AND type in (N'P', N'PC'))
DROP PROCEDURE [OwnerName].[ProcName]
GO
Alternatively you can write ALTER PROC, but this may be an issue if you're saving your work as a script to be later deployed to a databases that may not have the procedure
As an aside you can always have SQL server generate this for you by right clicking on an existing procedure and selecting Script Stored Procedure as -> DROP and CREATE to -> ...
You could also use the Template Explorer Ctrl+Alt+T and use the Drop Stored Procedure template (below is the default) and then use the Query -> Specify Values for Template Parameters
-- =======================================================
-- Drop Stored Procedure
-- =======================================================
-- Drop stored procedure if it already exists
IF EXISTS (
SELECT *
FROM INFORMATION_SCHEMA.ROUTINES
WHERE SPECIFIC_SCHEMA = N'<Schema_Name, sysname, Schema_Name>'
AND SPECIFIC_NAME = N'<Procedure_Name, sysname, Procedure_Name>'
)
DROP PROCEDURE <Schema_Name, sysname, Schema_Name>.<Procedure_Name, sysname, Procedure_Name>
GO
ALTER PROCEDUREsyntax when writing stored procedures? – Justin Feb 24 '12 at 17:13