Hi,
try this but modify it base on your requirements.
Declare @County nvarchar(max)
set @County = (your Select statement here to get the county value)
IF @County = 'Test' or @County = 'Test1"
BEGIN
--add your new sp here for the 60 days validation
END
ELSE
BEGIN
--your 10 days validation here
END
Jim