﻿Declare @id int, @sID int, @qID int
Select @ID=max(std_question_choice_id) from dbo.std_question_choice;


    select @sID=id from dbo.std_survey_type where code='COMP TBI EVAL';
	Select @qID=id from dbo.std_question where Question_number='1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Divorced or separated')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Divorced or separated','Separated or divorced',3,0,'TBIe','TBIE',getdate(),getdate());
		end




    
	Select @qID=id from dbo.std_question where Question_number='1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Married or Partnered')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Married or Partnered','Married or partnered',2,0,'TBIe','TBIE',getdate(),getdate());
		end





    
	Select @qID=id from dbo.std_question where Question_number='1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end





    
	Select @qID=id from dbo.std_question where Question_number='1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Single, never married')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Single, never married','Single, never married',1,0,'TBIe','TBIE',getdate(),getdate());
		end





    
	Select @qID=id from dbo.std_question where Question_number='1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Widowed')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Widowed','Widowed',4,0,'TBIe','TBIE',getdate(),getdate());
		end





    
	Select @qID=id from dbo.std_question where Question_number='10' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='No')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'No','No',1,0,'TBIe','TBIE',getdate(),getdate());
		end





    
	Select @qID=id from dbo.std_question where Question_number='10' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end





    
	Select @qID=id from dbo.std_question where Question_number='10' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Yes')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Yes','Yes',2,0,'TBIe','TBIE',getdate(),getdate());
		end





    
	Select @qID=id from dbo.std_question where Question_number='11' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0. No')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'0. No','No',1,0,'TBIe','TBIE',getdate(),getdate());
		end





    
	Select @qID=id from dbo.std_question where Question_number='11' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1 Yes, for traumatic brain injury')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1 Yes, for traumatic brain injury','Yes, for traumatic brain injury',2,0,'TBIe','TBIE',getdate(),getdate());
		end





    
	Select @qID=id from dbo.std_question where Question_number='11' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2. Yes, for other medical reasons')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2. Yes, for other medical reasons','Yes, for other medical reasons',3,0,'TBIe','TBIE',getdate(),getdate());
		end






    
	Select @qID=id from dbo.std_question where Question_number='11' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end





    
	Select @qID=id from dbo.std_question where Question_number='12' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0. No')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'0. No','No',1,0,'TBIe','TBIE',getdate(),getdate());
		end

	




    
	Select @qID=id from dbo.std_question where Question_number='12' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1. Yes, in the past')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1. Yes, in the past','Yes, in the past',2,0,'TBIe','TBIE',getdate(),getdate());
		end





    
	Select @qID=id from dbo.std_question where Question_number='12' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2. Yes, currently')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2. Yes, currently','Yes, currently',3,0,'TBIe','TBIE',getdate(),getdate());
		end





    
	Select @qID=id from dbo.std_question where Question_number='12' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end





    
	Select @qID=id from dbo.std_question where Question_number='14' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0. No')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'0. No','No',1,0,'TBIe','TBIE',getdate(),getdate());
		end





    
	Select @qID=id from dbo.std_question where Question_number='14' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1. Yes')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1. Yes','Yes',2,0,'TBIe','TBIE',getdate(),getdate());
		end






    
	Select @qID=id from dbo.std_question where Question_number='14' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2. Uncertain')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2. Uncertain','Uncertain',3,0,'TBIe','TBIE',getdate(),getdate());
		end





    
	Select @qID=id from dbo.std_question where Question_number='14' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3. Not Assessed')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3. Not Assessed','Not Assessed',4,0,'TBIe','TBIE',getdate(),getdate());
		end





    
	Select @qID=id from dbo.std_question where Question_number='14' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end





    
	Select @qID=id from dbo.std_question where Question_number='15' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0. No')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'0. No','No',1,0,'TBIe','TBIE',getdate(),getdate());
		end




    
	Select @qID=id from dbo.std_question where Question_number='15' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1. Yes')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1. Yes','Yes',2,0,'TBIe','TBIE',getdate(),getdate());
		end





    
	Select @qID=id from dbo.std_question where Question_number='15' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2. Uncertain')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2. Uncertain','Uncertain',3,0,'TBIe','TBIE',getdate(),getdate());
		end





    
	Select @qID=id from dbo.std_question where Question_number='15' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3. Not Assessed')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3. Not Assessed','Not Assessed',4,0,'TBIe','TBIE',getdate(),getdate());
		end





    
	Select @qID=id from dbo.std_question where Question_number='15' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end





    
	Select @qID=id from dbo.std_question where Question_number='16-A' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0. None')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'0. None','None',1,0,'TBIe','TBIE',getdate(),getdate());
		end





    
	Select @qID=id from dbo.std_question where Question_number='16-A' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1. Mild')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1. Mild','Mild',2,0,'TBIe','TBIE',getdate(),getdate());
		end





    
	Select @qID=id from dbo.std_question where Question_number='16-A' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2. Moderate')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2. Moderate','Moderate',3,0,'TBIe','TBIE',getdate(),getdate());
		end






    
	Select @qID=id from dbo.std_question where Question_number='16-A' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3. Severe')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3. Severe','Severe',4,0,'TBIe','TBIE',getdate(),getdate());
		end





    
	Select @qID=id from dbo.std_question where Question_number='16-A' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4. Very Severe')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4. Very Severe','Very Severe',5,0,'TBIe','TBIE',getdate(),getdate());
		end






    
	Select @qID=id from dbo.std_question where Question_number='16-A' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end





    
	Select @qID=id from dbo.std_question where Question_number='16-B' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0. None')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'0. None','None',1,0,'TBIe','TBIE',getdate(),getdate());
		end






    
	Select @qID=id from dbo.std_question where Question_number='16-B' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1. Mild')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1. Mild','Mild',2,0,'TBIe','TBIE',getdate(),getdate());
		end






    
	Select @qID=id from dbo.std_question where Question_number='16-B' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2. Moderate')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2. Moderate','Moderate',3,0,'TBIe','TBIE',getdate(),getdate());
		end





    
	Select @qID=id from dbo.std_question where Question_number='16-B' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3. Severe')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3. Severe','Severe',4,0,'TBIe','TBIE',getdate(),getdate());
		end





    
	Select @qID=id from dbo.std_question where Question_number='16-B' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4. Very Severe')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4. Very Severe','Very Severe',5,0,'TBIe','TBIE',getdate(),getdate());
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-B' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end





    
	Select @qID=id from dbo.std_question where Question_number='16-C' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0. None')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'0. None','None',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		




    
	Select @qID=id from dbo.std_question where Question_number='16-C' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1. Mild')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1. Mild','Mild',2,0,'TBIe','TBIE',getdate(),getdate());
		end





    
	Select @qID=id from dbo.std_question where Question_number='16-C' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2. Moderate')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2. Moderate','Moderate',3,0,'TBIe','TBIE',getdate(),getdate());
		end






    
	Select @qID=id from dbo.std_question where Question_number='16-C' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3. Severe')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3. Severe','Severe',4,0,'TBIe','TBIE',getdate(),getdate());
		end





    
	Select @qID=id from dbo.std_question where Question_number='16-C' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4. Very Severe')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4. Very Severe','Very Severe',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4. Very Severe')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4. Very Severe',
				--[CHOICE_TEXT]='Very Severe',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-C' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Not asked (due to responses to other questions)',
				--[CHOICE_TEXT]='Not asked (due to responses to other questions)',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-D' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0. None')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'0. None','None',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0. None')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='0. None',
				--[CHOICE_TEXT]='None',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-D' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1. Mild')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1. Mild','Mild',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1. Mild')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1. Mild',
				--[CHOICE_TEXT]='Mild',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-D' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2. Moderate')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2. Moderate','Moderate',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2. Moderate')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2. Moderate',
				--[CHOICE_TEXT]='Moderate',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-D' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3. Severe')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3. Severe','Severe',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3. Severe')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3. Severe',
				--[CHOICE_TEXT]='Severe',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-D' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4. Very Severe')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4. Very Severe','Very Severe',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4. Very Severe')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4. Very Severe',
				--[CHOICE_TEXT]='Very Severe',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-D' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Not asked (due to responses to other questions)',
				--[CHOICE_TEXT]='Not asked (due to responses to other questions)',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-E' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0. None')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'0. None','None',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0. None')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='0. None',
				--[CHOICE_TEXT]='None',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-E' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1. Mild')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1. Mild','Mild',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1. Mild')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1. Mild',
				--[CHOICE_TEXT]='Mild',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-E' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2. Moderate')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2. Moderate','Moderate',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2. Moderate')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2. Moderate',
				--[CHOICE_TEXT]='Moderate',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-E' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3. Severe')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3. Severe','Severe',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3. Severe')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3. Severe',
				--[CHOICE_TEXT]='Severe',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-E' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4. Very Severe')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4. Very Severe','Very Severe',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4. Very Severe')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4. Very Severe',
				--[CHOICE_TEXT]='Very Severe',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-E' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Not asked (due to responses to other questions)',
				--[CHOICE_TEXT]='Not asked (due to responses to other questions)',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-F' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0. None')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'0. None','None',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0. None')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='0. None',
				--[CHOICE_TEXT]='None',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-F' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1. Mild')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1. Mild','Mild',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1. Mild')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1. Mild',
				--[CHOICE_TEXT]='Mild',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-F' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2. Moderate')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2. Moderate','Moderate',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2. Moderate')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2. Moderate',
				--[CHOICE_TEXT]='Moderate',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-F' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3. Severe')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3. Severe','Severe',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3. Severe')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3. Severe',
				--[CHOICE_TEXT]='Severe',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-F' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4. Very Severe')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4. Very Severe','Very Severe',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4. Very Severe')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4. Very Severe',
				--[CHOICE_TEXT]='Very Severe',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-F' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Not asked (due to responses to other questions)',
				--[CHOICE_TEXT]='Not asked (due to responses to other questions)',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-G' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0. None')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'0. None','None',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0. None')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='0. None',
				--[CHOICE_TEXT]='None',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-G' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1. Mild')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1. Mild','Mild',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1. Mild')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1. Mild',
				--[CHOICE_TEXT]='Mild',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-G' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2. Moderate')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2. Moderate','Moderate',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2. Moderate')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2. Moderate',
				--[CHOICE_TEXT]='Moderate',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-G' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3. Severe')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3. Severe','Severe',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3. Severe')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3. Severe',
				--[CHOICE_TEXT]='Severe',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-G' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4. Very Severe')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4. Very Severe','Very Severe',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4. Very Severe')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4. Very Severe',
				--[CHOICE_TEXT]='Very Severe',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-G' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Not asked (due to responses to other questions)',
				--[CHOICE_TEXT]='Not asked (due to responses to other questions)',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-H' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0. None')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'0. None','None',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0. None')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='0. None',
				--[CHOICE_TEXT]='None',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-H' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1. Mild')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1. Mild','Mild',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1. Mild')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1. Mild',
				--[CHOICE_TEXT]='Mild',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-H' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2. Moderate')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2. Moderate','Moderate',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2. Moderate')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2. Moderate',
				--[CHOICE_TEXT]='Moderate',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-H' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3. Severe')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3. Severe','Severe',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3. Severe')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3. Severe',
				--[CHOICE_TEXT]='Severe',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-H' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4. Very Severe')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4. Very Severe','Very Severe',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4. Very Severe')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4. Very Severe',
				--[CHOICE_TEXT]='Very Severe',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-H' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Not asked (due to responses to other questions)',
				--[CHOICE_TEXT]='Not asked (due to responses to other questions)',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-I' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0. None')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'0. None','None',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0. None')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='0. None',
				--[CHOICE_TEXT]='None',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-I' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1. Mild')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1. Mild','Mild',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1. Mild')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1. Mild',
				--[CHOICE_TEXT]='Mild',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-I' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2. Moderate')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2. Moderate','Moderate',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2. Moderate')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2. Moderate',
				--[CHOICE_TEXT]='Moderate',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-I' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3. Severe')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3. Severe','Severe',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3. Severe')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3. Severe',
				--[CHOICE_TEXT]='Severe',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-I' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4. Very Severe')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4. Very Severe','Very Severe',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4. Very Severe')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4. Very Severe',
				--[CHOICE_TEXT]='Very Severe',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-I' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Not asked (due to responses to other questions)',
				--[CHOICE_TEXT]='Not asked (due to responses to other questions)',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-J' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0. None')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'0. None','None',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0. None')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='0. None',
				--[CHOICE_TEXT]='None',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-J' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1. Mild')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1. Mild','Mild',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1. Mild')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1. Mild',
				--[CHOICE_TEXT]='Mild',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-J' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2. Moderate')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2. Moderate','Moderate',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2. Moderate')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2. Moderate',
				--[CHOICE_TEXT]='Moderate',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-J' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3. Severe')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3. Severe','Severe',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3. Severe')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3. Severe',
				--[CHOICE_TEXT]='Severe',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-J' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4. Very Severe')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4. Very Severe','Very Severe',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4. Very Severe')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4. Very Severe',
				--[CHOICE_TEXT]='Very Severe',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-J' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Not asked (due to responses to other questions)',
				--[CHOICE_TEXT]='Not asked (due to responses to other questions)',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-K' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0. None')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'0. None','None',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0. None')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='0. None',
				--[CHOICE_TEXT]='None',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-K' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1. Mild')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1. Mild','Mild',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1. Mild')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1. Mild',
				--[CHOICE_TEXT]='Mild',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-K' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2. Moderate')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2. Moderate','Moderate',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2. Moderate')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2. Moderate',
				--[CHOICE_TEXT]='Moderate',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-K' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3. Severe')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3. Severe','Severe',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3. Severe')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3. Severe',
				--[CHOICE_TEXT]='Severe',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-K' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4. Very Severe')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4. Very Severe','Very Severe',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4. Very Severe')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4. Very Severe',
				--[CHOICE_TEXT]='Very Severe',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-K' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Not asked (due to responses to other questions)',
				--[CHOICE_TEXT]='Not asked (due to responses to other questions)',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-L' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0. None')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'0. None','None',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0. None')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='0. None',
				--[CHOICE_TEXT]='None',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-L' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1. Mild')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1. Mild','Mild',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1. Mild')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1. Mild',
				--[CHOICE_TEXT]='Mild',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-L' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2. Moderate')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2. Moderate','Moderate',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2. Moderate')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2. Moderate',
				--[CHOICE_TEXT]='Moderate',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-L' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3. Severe')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3. Severe','Severe',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3. Severe')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3. Severe',
				--[CHOICE_TEXT]='Severe',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-L' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4. Very Severe')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4. Very Severe','Very Severe',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4. Very Severe')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4. Very Severe',
				--[CHOICE_TEXT]='Very Severe',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-L' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Not asked (due to responses to other questions)',
				--[CHOICE_TEXT]='Not asked (due to responses to other questions)',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-M' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0. None')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'0. None','None',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0. None')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='0. None',
				--[CHOICE_TEXT]='None',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-M' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1. Mild')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1. Mild','Mild',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1. Mild')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1. Mild',
				--[CHOICE_TEXT]='Mild',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-M' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2. Moderate')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2. Moderate','Moderate',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2. Moderate')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2. Moderate',
				--[CHOICE_TEXT]='Moderate',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-M' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3. Severe')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3. Severe','Severe',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3. Severe')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3. Severe',
				--[CHOICE_TEXT]='Severe',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-M' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4. Very Severe')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4. Very Severe','Very Severe',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4. Very Severe')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4. Very Severe',
				--[CHOICE_TEXT]='Very Severe',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-M' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Not asked (due to responses to other questions)',
				--[CHOICE_TEXT]='Not asked (due to responses to other questions)',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-N' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0. None')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'0. None','None',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0. None')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='0. None',
				--[CHOICE_TEXT]='None',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-N' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1. Mild')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1. Mild','Mild',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1. Mild')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1. Mild',
				--[CHOICE_TEXT]='Mild',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-N' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2. Moderate')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2. Moderate','Moderate',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2. Moderate')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2. Moderate',
				--[CHOICE_TEXT]='Moderate',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-N' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3. Severe')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3. Severe','Severe',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3. Severe')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3. Severe',
				--[CHOICE_TEXT]='Severe',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-N' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4. Very Severe')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4. Very Severe','Very Severe',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4. Very Severe')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4. Very Severe',
				--[CHOICE_TEXT]='Very Severe',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-N' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Not asked (due to responses to other questions)',
				--[CHOICE_TEXT]='Not asked (due to responses to other questions)',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-O' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0. None')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'0. None','None',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0. None')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='0. None',
				--[CHOICE_TEXT]='None',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-O' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1. Mild')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1. Mild','Mild',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1. Mild')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1. Mild',
				--[CHOICE_TEXT]='Mild',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-O' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2. Moderate')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2. Moderate','Moderate',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2. Moderate')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2. Moderate',
				--[CHOICE_TEXT]='Moderate',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-O' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3. Severe')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3. Severe','Severe',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3. Severe')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3. Severe',
				--[CHOICE_TEXT]='Severe',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-O' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4. Very Severe')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4. Very Severe','Very Severe',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4. Very Severe')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4. Very Severe',
				--[CHOICE_TEXT]='Very Severe',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-O' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Not asked (due to responses to other questions)',
				--[CHOICE_TEXT]='Not asked (due to responses to other questions)',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-P' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0. None')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'0. None','None',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0. None')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='0. None',
				--[CHOICE_TEXT]='None',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-P' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1. Mild')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1. Mild','Mild',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1. Mild')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1. Mild',
				--[CHOICE_TEXT]='Mild',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-P' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2. Moderate')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2. Moderate','Moderate',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2. Moderate')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2. Moderate',
				--[CHOICE_TEXT]='Moderate',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-P' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3. Severe')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3. Severe','Severe',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3. Severe')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3. Severe',
				--[CHOICE_TEXT]='Severe',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-P' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4. Very Severe')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4. Very Severe','Very Severe',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4. Very Severe')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4. Very Severe',
				--[CHOICE_TEXT]='Very Severe',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-P' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Not asked (due to responses to other questions)',
				--[CHOICE_TEXT]='Not asked (due to responses to other questions)',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-Q' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0. None')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'0. None','None',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0. None')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='0. None',
				--[CHOICE_TEXT]='None',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-Q' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1. Mild')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1. Mild','Mild',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1. Mild')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1. Mild',
				--[CHOICE_TEXT]='Mild',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-Q' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2. Moderate')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2. Moderate','Moderate',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2. Moderate')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2. Moderate',
				--[CHOICE_TEXT]='Moderate',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-Q' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3. Severe')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3. Severe','Severe',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3. Severe')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3. Severe',
				--[CHOICE_TEXT]='Severe',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-Q' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4. Very Severe')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4. Very Severe','Very Severe',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4. Very Severe')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4. Very Severe',
				--[CHOICE_TEXT]='Very Severe',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-Q' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Not asked (due to responses to other questions)',
				--[CHOICE_TEXT]='Not asked (due to responses to other questions)',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-R' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0. None')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'0. None','None',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0. None')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='0. None',
				--[CHOICE_TEXT]='None',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-R' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1. Mild')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1. Mild','Mild',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1. Mild')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1. Mild',
				--[CHOICE_TEXT]='Mild',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-R' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2. Moderate')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2. Moderate','Moderate',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2. Moderate')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2. Moderate',
				--[CHOICE_TEXT]='Moderate',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-R' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3. Severe')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3. Severe','Severe',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3. Severe')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3. Severe',
				--[CHOICE_TEXT]='Severe',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-R' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4. Very Severe')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4. Very Severe','Very Severe',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4. Very Severe')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4. Very Severe',
				--[CHOICE_TEXT]='Very Severe',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-R' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Not asked (due to responses to other questions)',
				--[CHOICE_TEXT]='Not asked (due to responses to other questions)',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-S' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0. None')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'0. None','None',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0. None')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='0. None',
				--[CHOICE_TEXT]='None',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-S' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1. Mild')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1. Mild','Mild',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1. Mild')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1. Mild',
				--[CHOICE_TEXT]='Mild',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-S' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2. Moderate')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2. Moderate','Moderate',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2. Moderate')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2. Moderate',
				--[CHOICE_TEXT]='Moderate',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-S' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3. Severe')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3. Severe','Severe',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3. Severe')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3. Severe',
				--[CHOICE_TEXT]='Severe',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-S' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4. Very Severe')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4. Very Severe','Very Severe',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4. Very Severe')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4. Very Severe',
				--[CHOICE_TEXT]='Very Severe',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-S' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Not asked (due to responses to other questions)',
				--[CHOICE_TEXT]='Not asked (due to responses to other questions)',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-T' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0. None')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'0. None','None',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0. None')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='0. None',
				--[CHOICE_TEXT]='None',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-T' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1. Mild')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1. Mild','Mild',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1. Mild')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1. Mild',
				--[CHOICE_TEXT]='Mild',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-T' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2. Moderate')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2. Moderate','Moderate',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2. Moderate')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2. Moderate',
				--[CHOICE_TEXT]='Moderate',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-T' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3. Severe')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3. Severe','Severe',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3. Severe')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3. Severe',
				--[CHOICE_TEXT]='Severe',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-T' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4. Very Severe')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4. Very Severe','Very Severe',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4. Very Severe')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4. Very Severe',
				--[CHOICE_TEXT]='Very Severe',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-T' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Not asked (due to responses to other questions)',
				--[CHOICE_TEXT]='Not asked (due to responses to other questions)',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-U' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0. None')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'0. None','None',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0. None')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='0. None',
				--[CHOICE_TEXT]='None',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-U' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1. Mild')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1. Mild','Mild',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1. Mild')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1. Mild',
				--[CHOICE_TEXT]='Mild',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-U' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2. Moderate')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2. Moderate','Moderate',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2. Moderate')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2. Moderate',
				--[CHOICE_TEXT]='Moderate',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-U' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3. Severe')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3. Severe','Severe',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3. Severe')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3. Severe',
				--[CHOICE_TEXT]='Severe',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-U' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4. Very Severe')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4. Very Severe','Very Severe',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4. Very Severe')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4. Very Severe',
				--[CHOICE_TEXT]='Very Severe',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-U' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Not asked (due to responses to other questions)',
				--[CHOICE_TEXT]='Not asked (due to responses to other questions)',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-V' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0. None')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'0. None','None',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0. None')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='0. None',
				--[CHOICE_TEXT]='None',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-V' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1. Mild')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1. Mild','Mild',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1. Mild')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1. Mild',
				--[CHOICE_TEXT]='Mild',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-V' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2. Moderate')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2. Moderate','Moderate',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2. Moderate')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2. Moderate',
				--[CHOICE_TEXT]='Moderate',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-V' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3. Severe')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3. Severe','Severe',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3. Severe')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3. Severe',
				--[CHOICE_TEXT]='Severe',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-V' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4. Very Severe')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4. Very Severe','Very Severe',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4. Very Severe')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4. Very Severe',
				--[CHOICE_TEXT]='Very Severe',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='16-V' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Not asked (due to responses to other questions)',
				--[CHOICE_TEXT]='Not asked (due to responses to other questions)',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='18' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0. No')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'0. No','No',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0. No')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='0. No',
				--[CHOICE_TEXT]='No',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='18' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1. Yes')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1. Yes','Yes',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1. Yes')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1. Yes',
				--[CHOICE_TEXT]='Yes',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='18' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Not asked (due to responses to other questions)',
				--[CHOICE_TEXT]='Not asked (due to responses to other questions)',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='18-A' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0. Head/headaches')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'0. Head/headaches','Head/headaches',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0. Head/headaches')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='0. Head/headaches',
				--[CHOICE_TEXT]='Head/headaches',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='18-A' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1. Leg(s)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1. Leg(s)','Leg(s)',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1. Leg(s)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1. Leg(s)',
				--[CHOICE_TEXT]='Leg(s)',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='18-A' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2. Arm(s)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2. Arm(s)','Arm(s)',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2. Arm(s)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2. Arm(s)',
				--[CHOICE_TEXT]='Arm(s)',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='18-A' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3. Neck')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3. Neck','Neck',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3. Neck')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3. Neck',
				--[CHOICE_TEXT]='Neck',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='18-A' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4. Shoulder(s)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4. Shoulder(s)','Shoulder(s)',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4. Shoulder(s)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4. Shoulder(s)',
				--[CHOICE_TEXT]='Shoulder(s)',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='18-A' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5. Low back')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5. Low back','Low back',6,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5. Low back')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5. Low back',
				--[CHOICE_TEXT]='Low back',
				--[CHOICE_SORT_ORDER]=6,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='18-A' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='6. Upper back')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'6. Upper back','Upper back',7,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='6. Upper back')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='6. Upper back',
				--[CHOICE_TEXT]='Upper back',
				--[CHOICE_SORT_ORDER]=7,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='18-A' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='7. Feet')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'7. Feet','Feet',8,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='7. Feet')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='7. Feet',
				--[CHOICE_TEXT]='Feet',
				--[CHOICE_SORT_ORDER]=8,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='18-A' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='8. Hand(s)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'8. Hand(s)','Hand(s)',9,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='8. Hand(s)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='8. Hand(s)',
				--[CHOICE_TEXT]='Hand(s)',
				--[CHOICE_SORT_ORDER]=9,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='18-A' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9. Other (Describe in "Details of Plan"))')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'9. Other (Describe in "Details of Plan"))','Other (Describe in "Details of Plan")',10,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9. Other (Describe in "Details of Plan"))')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='9. Other (Describe in "Details of Plan"))',
				--[CHOICE_TEXT]='Other (Describe in "Details of Plan")',
				--[CHOICE_SORT_ORDER]=10,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='18-A' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Not asked (due to responses to other questions)',
				--[CHOICE_TEXT]='Not asked (due to responses to other questions)',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='19' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1. Better')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1. Better','Better',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1. Better')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1. Better',
				--[CHOICE_TEXT]='Better',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='19' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2. Worse')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2. Worse','Worse',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2. Worse')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2. Worse',
				--[CHOICE_TEXT]='Worse',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='19' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3. About the Same')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3. About the Same','About the Same',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3. About the Same')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3. About the Same',
				--[CHOICE_TEXT]='About the Same',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='19' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Not asked (due to responses to other questions)',
				--[CHOICE_TEXT]='Not asked (due to responses to other questions)',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='2' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='College graduate (baccalaureate)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'College graduate (baccalaureate)','College graduate (baccalaureate)',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='College graduate (baccalaureate)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='College graduate (baccalaureate)',
				--[CHOICE_TEXT]='College graduate (baccalaureate)',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='2' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Degree')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Degree','Some college, associate degree, or technical degree',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Degree')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Degree',
				--[CHOICE_TEXT]='Some college, associate degree, or technical degree',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='2' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='HS or equivalent')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'HS or equivalent','High school or equivalent',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='HS or equivalent')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='HS or equivalent',
				--[CHOICE_TEXT]='High school or equivalent',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='2' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Less than HS')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Less than HS','Less than high school',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Less than HS')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Less than HS',
				--[CHOICE_TEXT]='Less than high school',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='2' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Not asked (due to responses to other questions)',
				--[CHOICE_TEXT]='Not asked (due to responses to other questions)',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='2' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Post baccalaureate')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Post baccalaureate','Post baccalaureate',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Post baccalaureate')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Post baccalaureate',
				--[CHOICE_TEXT]='Post baccalaureate',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='20' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Input:')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Input:','Input:',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Input:')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Input:',
				--[CHOICE_TEXT]='Input:',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='20' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Not asked (due to responses to other questions)',
				--[CHOICE_TEXT]='Not asked (due to responses to other questions)',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='21' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Input:')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Input:','Input:',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Input:')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Input:',
				--[CHOICE_TEXT]='Input:',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='21' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Not asked (due to responses to other questions)',
				--[CHOICE_TEXT]='Not asked (due to responses to other questions)',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='21-A' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='No')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'No','No medication changes made during this clinic visit',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='No')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='No',
				--[CHOICE_TEXT]='No medication changes made during this clinic visit',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='21-A' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Not asked (due to responses to other questions)',
				--[CHOICE_TEXT]='Not asked (due to responses to other questions)',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='21-A' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Yes')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Yes','Yes',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Yes')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Yes',
				--[CHOICE_TEXT]='Yes',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='21-B' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='No')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'No','No',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='No')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='No',
				--[CHOICE_TEXT]='No',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='21-B' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Not asked (due to responses to other questions)',
				--[CHOICE_TEXT]='Not asked (due to responses to other questions)',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='21-B' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Yes')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Yes','Yes',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Yes')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Yes',
				--[CHOICE_TEXT]='Yes',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='21-C' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Explanation Input:')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Explanation Input:','Explanation Input:',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Explanation Input:')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Explanation Input:',
				--[CHOICE_TEXT]='Explanation Input:',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='21-C' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Not asked (due to responses to other questions)',
				--[CHOICE_TEXT]='Not asked (due to responses to other questions)',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='22' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Input:')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Input:','Input:',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Input:')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Input:',
				--[CHOICE_TEXT]='Input:',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='22' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Not asked (due to responses to other questions)',
				--[CHOICE_TEXT]='Not asked (due to responses to other questions)',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='23-A' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1. Depression')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1. Depression','Depression',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1. Depression')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1. Depression',
				--[CHOICE_TEXT]='Depression',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='23-A' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2. PTSD')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2. PTSD','PTSD',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2. PTSD')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2. PTSD',
				--[CHOICE_TEXT]='PTSD',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='23-A' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3. Anxiety disorder (other than PTSD)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3. Anxiety disorder (other than PTSD)','Anxiety disorder (other than PTSD)',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3. Anxiety disorder (other than PTSD)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3. Anxiety disorder (other than PTSD)',
				--[CHOICE_TEXT]='Anxiety disorder (other than PTSD)',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='23-A' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4. Alcohol abuse/dependence')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4. Alcohol abuse/dependence','Alcohol abuse/dependence',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4. Alcohol abuse/dependence')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4. Alcohol abuse/dependence',
				--[CHOICE_TEXT]='Alcohol abuse/dependence',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='23-A' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5. Drug abuse / dependence')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5. Drug abuse / dependence','Drug abuse / dependence',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5. Drug abuse / dependence')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5. Drug abuse / dependence',
				--[CHOICE_TEXT]='Drug abuse / dependence',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='23-A' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='6. Psychotic disorder')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'6. Psychotic disorder','Psychotic disorder',6,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='6. Psychotic disorder')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='6. Psychotic disorder',
				--[CHOICE_TEXT]='Psychotic disorder',
				--[CHOICE_SORT_ORDER]=6,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='23-A' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='7. Other AXIS I disorder')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'7. Other AXIS I disorder','Other AXIS I disorder',7,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='7. Other AXIS I disorder')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='7. Other AXIS I disorder',
				--[CHOICE_TEXT]='Other AXIS I disorder',
				--[CHOICE_SORT_ORDER]=7,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='23-A' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='8. Somatoform disorder')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'8. Somatoform disorder','Somatoform disorder',8,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='8. Somatoform disorder')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='8. Somatoform disorder',
				--[CHOICE_TEXT]='Somatoform disorder',
				--[CHOICE_SORT_ORDER]=8,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='23-A' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Not asked (due to responses to other questions)',
				--[CHOICE_TEXT]='Not asked (due to responses to other questions)',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='27' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='No')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'No','No',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='No')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='No',
				--[CHOICE_TEXT]='No',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='27' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Not asked (due to responses to other questions)',
				--[CHOICE_TEXT]='Not asked (due to responses to other questions)',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='27' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Yes')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Yes','Yes',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Yes')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Yes',
				--[CHOICE_TEXT]='Yes',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='28' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1.Symptom resolution (patient is currently not reporting symptoms)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1.Symptom resolution (patient is currently not reporting symptoms)','Symptom resolution (Patient is currently not reporting symptoms)',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1.Symptom resolution (patient is currently not reporting symptoms)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1.Symptom resolution (patient is currently not reporting symptoms)',
				--[CHOICE_TEXT]='Symptom resolution (Patient is currently not reporting symptoms)',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='28' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2. An OEF/OIF/OND deployment related Traumatic Brain Injury (TBI) residual problems.')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2. An OEF/OIF/OND deployment related Traumatic Brain Injury (TBI) residual problems.','An OEF/OIF/OND deployment related Traumatic Brain Injury (TBI) residual problems.',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2. An OEF/OIF/OND deployment related Traumatic Brain Injury (TBI) residual problems.')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2. An OEF/OIF/OND deployment related Traumatic Brain Injury (TBI) residual problems.',
				--[CHOICE_TEXT]='An OEF/OIF/OND deployment related Traumatic Brain Injury (TBI) residual problems.',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='28' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3. Behavioral Health Conditions (e.g. PTSD, depression, etc.)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3. Behavioral Health Conditions (e.g. PTSD, depression, etc.)','Behavioral Health Conditions (e.g. PTSD, depression, etc.)',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3. Behavioral Health Conditions (e.g. PTSD, depression, etc.)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3. Behavioral Health Conditions (e.g. PTSD, depression, etc.)',
				--[CHOICE_TEXT]='Behavioral Health Conditions (e.g. PTSD, depression, etc.)',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='28' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4. Other combination of OEF/OIF/OND deployment related TBI and Behavioral Health condition(s)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4. Other combination of OEF/OIF/OND deployment related TBI and Behavioral Health condition(s)','A combination of OEF/OIF/OND deployment related TBI and Behavioral Health condition(s)',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4. Other combination of OEF/OIF/OND deployment related TBI and Behavioral Health condition(s)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4. Other combination of OEF/OIF/OND deployment related TBI and Behavioral Health condition(s)',
				--[CHOICE_TEXT]='A combination of OEF/OIF/OND deployment related TBI and Behavioral Health condition(s)',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='28' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5. Other condition not related to OEF/OIF/OND deployment related TBI or Behavioral Health condition(s) ')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5. Other condition not related to OEF/OIF/OND deployment related TBI or Behavioral Health condition(s) ','Other condition not related to OEF/OIF/OND deployment related TBI or Behavioral Health condition(s) ',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5. Other condition not related to OEF/OIF/OND deployment related TBI or Behavioral Health condition(s) ')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5. Other condition not related to OEF/OIF/OND deployment related TBI or Behavioral Health condition(s) ',
				--[CHOICE_TEXT]='Other condition not related to OEF/OIF/OND deployment related TBI or Behavioral Health condition(s) ',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='28' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Not asked (due to responses to other questions)',
				--[CHOICE_TEXT]='Not asked (due to responses to other questions)',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='28-A' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Input:')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Input:','InPut',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Input:')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Input:',
				--[CHOICE_TEXT]='InPut',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='29' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1. Services will be provided within VA healthcare system')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1. Services will be provided within VA healthcare system','Services will be provided within VA healthcare system',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1. Services will be provided within VA healthcare system')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1. Services will be provided within VA healthcare system',
				--[CHOICE_TEXT]='Services will be provided within VA healthcare system',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='29' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2. Services will be provided outside VA')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2. Services will be provided outside VA','Services will be provided outside VA',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2. Services will be provided outside VA')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2. Services will be provided outside VA',
				--[CHOICE_TEXT]='Services will be provided outside VA',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='29' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3. Patient will receive Both VA and Non-VA Services')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3. Patient will receive Both VA and Non-VA Services','Patient will receive both VA and non-VA services',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3. Patient will receive Both VA and Non-VA Services')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3. Patient will receive Both VA and Non-VA Services',
				--[CHOICE_TEXT]='Patient will receive both VA and non-VA services',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='29' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4. No services needed')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4. No services needed','No services needed',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4. No services needed')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4. No services needed',
				--[CHOICE_TEXT]='No services needed',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='29' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5. Patient refused/not interested in further services')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5. Patient refused/not interested in further services','Patient refused or not interested in further services',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5. Patient refused/not interested in further services')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5. Patient refused/not interested in further services',
				--[CHOICE_TEXT]='Patient refused or not interested in further services',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='29' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Not asked (due to responses to other questions)',
				--[CHOICE_TEXT]='Not asked (due to responses to other questions)',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='29-A-1-a' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='No')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'No','No',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='No')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='No',
				--[CHOICE_TEXT]='No',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='29-A-1-a' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Yes')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Yes','Yes',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Yes')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Yes',
				--[CHOICE_TEXT]='Yes',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='29-A-1-b' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='No')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'No','No',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='No')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='No',
				--[CHOICE_TEXT]='No',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='29-A-1-b' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Yes')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Yes','Yes',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Yes')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Yes',
				--[CHOICE_TEXT]='Yes',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='29-A-1-c' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='No')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'No','No',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='No')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='No',
				--[CHOICE_TEXT]='No',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='29-A-1-c' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Yes')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Yes','Yes',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Yes')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Yes',
				--[CHOICE_TEXT]='Yes',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='29-A-1-d' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='No')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'No','No',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='No')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='No',
				--[CHOICE_TEXT]='No',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='29-A-1-d' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Yes')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Yes','Yes',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Yes')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Yes',
				--[CHOICE_TEXT]='Yes',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='29-A-1-e' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Input:')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Input:','InPut',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Input:')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Input:',
				--[CHOICE_TEXT]='InPut',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='29-A-1-e' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='No')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'No','No',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='No')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='No',
				--[CHOICE_TEXT]='No',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='29-A-1-e' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Yes')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Yes','Yes',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Yes')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Yes',
				--[CHOICE_TEXT]='Yes',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='29-A-1-f' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='No')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'No','No',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='No')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='No',
				--[CHOICE_TEXT]='No',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='29-A-1-f' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Yes')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Yes','Yes',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Yes')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Yes',
				--[CHOICE_TEXT]='Yes',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='29-A-1-f-1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='No')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'No','No',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='No')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='No',
				--[CHOICE_TEXT]='No',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='29-A-1-f-1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Yes')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Yes','Yes',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Yes')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Yes',
				--[CHOICE_TEXT]='Yes',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='29-A-1-f-2' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Input:')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Input:','InPut',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Input:')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Input:',
				--[CHOICE_TEXT]='InPut',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='29-A-1-g' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='No')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'No','No',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='No')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='No',
				--[CHOICE_TEXT]='No',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='29-A-1-g' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Yes')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Yes','Yes',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Yes')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Yes',
				--[CHOICE_TEXT]='Yes',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='29-A-1-h' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Input:')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Input:','Input',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Input:')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Input:',
				--[CHOICE_TEXT]='Input',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='29-A-1-i' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='No')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'No','No',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='No')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='No',
				--[CHOICE_TEXT]='No',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='29-A-1-i' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Yes')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Yes','Yes',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Yes')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Yes',
				--[CHOICE_TEXT]='Yes',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='29-A-1-j' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='No')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'No','No',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='No')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='No',
				--[CHOICE_TEXT]='No',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='29-A-1-j' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Yes')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Yes','Yes',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Yes')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Yes',
				--[CHOICE_TEXT]='Yes',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='29-A-1-j-1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Audiology')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Audiology','Audiology',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Audiology')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Audiology',
				--[CHOICE_TEXT]='Audiology',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='29-A-1-j-1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='ENT')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'ENT','ENT',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='ENT')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='ENT',
				--[CHOICE_TEXT]='ENT',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='29-A-1-j-1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Neurology')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Neurology','Neurology',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Neurology')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Neurology',
				--[CHOICE_TEXT]='Neurology',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='29-A-1-j-1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Neuropsychology/Neuropsychological Assessment')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Neuropsychology/Neuropsychological Assessment','Neuropsychology/Neuropsychological Assessment',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Neuropsychology/Neuropsychological Assessment')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Neuropsychology/Neuropsychological Assessment',
				--[CHOICE_TEXT]='Neuropsychology/Neuropsychological Assessment',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='29-A-1-j-1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Occupational Therapy')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Occupational Therapy','Occupational Therapy',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Occupational Therapy')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Occupational Therapy',
				--[CHOICE_TEXT]='Occupational Therapy',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='29-A-1-j-1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Ophthalmology/Optometry')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Ophthalmology/Optometry','Ophthalmology/Optometry',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Ophthalmology/Optometry')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Ophthalmology/Optometry',
				--[CHOICE_TEXT]='Ophthalmology/Optometry',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='29-A-1-j-1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Other')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Other','Other',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Other')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Other',
				--[CHOICE_TEXT]='Other',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='29-A-1-j-1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Physical Therapy')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Physical Therapy','Physical Therapy',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Physical Therapy')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Physical Therapy',
				--[CHOICE_TEXT]='Physical Therapy',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='29-A-1-j-1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='PM and R')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'PM and R','PM and R',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='PM and R')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='PM and R',
				--[CHOICE_TEXT]='PM and R',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='29-A-1-j-1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Prosthetics')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Prosthetics','Prosthetics',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Prosthetics')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Prosthetics',
				--[CHOICE_TEXT]='Prosthetics',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='29-A-1-j-1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Psychiatry')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Psychiatry','Psychiatry',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Psychiatry')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Psychiatry',
				--[CHOICE_TEXT]='Psychiatry',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='29-A-1-j-1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Speech / Language Pathology')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Speech / Language Pathology','Speech / Language Pathology',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Speech / Language Pathology')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Speech / Language Pathology',
				--[CHOICE_TEXT]='Speech / Language Pathology',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='29-A-1-j-1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Substance Use/Addictive Disorder Evaluation and/or Treatment')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Substance Use/Addictive Disorder Evaluation and/or Treatment','Substance Use/Addictive Disorder Evaluation and/or Treatment',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Substance Use/Addictive Disorder Evaluation and/or Treatment')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Substance Use/Addictive Disorder Evaluation and/or Treatment',
				--[CHOICE_TEXT]='Substance Use/Addictive Disorder Evaluation and/or Treatment',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='29-A-2' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'0','No',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='0',
				--[CHOICE_TEXT]='No',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='29-A-2' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Yes',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Yes',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='29-A-2-a' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'0','There are no skilled therapy needs related to TBI.',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='0',
				--[CHOICE_TEXT]='There are no skilled therapy needs related to TBI.',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='29-A-2-a' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','There is no need for case management.',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='There is no need for case management.',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='3' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Homemaker')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Homemaker','Homemaker',7,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Homemaker')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Homemaker',
				--[CHOICE_TEXT]='Homemaker',
				--[CHOICE_SORT_ORDER]=7,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='3' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Not asked (due to responses to other questions)',
				--[CHOICE_TEXT]='Not asked (due to responses to other questions)',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='3' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Student')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Student','Student',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Student')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Student',
				--[CHOICE_TEXT]='Student',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='3' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Unemployed looking for work')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Unemployed looking for work','Unemployed, looking for work',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Unemployed looking for work')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Unemployed looking for work',
				--[CHOICE_TEXT]='Unemployed, looking for work',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='3' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Unemployed not looking for work')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Unemployed not looking for work','Unemployed, not looking for work',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Unemployed not looking for work')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Unemployed not looking for work',
				--[CHOICE_TEXT]='Unemployed, not looking for work',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='3' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Volunteer')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Volunteer','Volunteer',6,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Volunteer')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Volunteer',
				--[CHOICE_TEXT]='Volunteer',
				--[CHOICE_SORT_ORDER]=6,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='3' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Working full-time')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Working full-time','Working full-time',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Working full-time')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Working full-time',
				--[CHOICE_TEXT]='Working full-time',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='3' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Working part-time')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Working part-time','Working part-time',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Working part-time')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Working part-time',
				--[CHOICE_TEXT]='Working part-time',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='30' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Dentail Input:')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Dentail Input:','Detail Input:',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Dentail Input:')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Dentail Input:',
				--[CHOICE_TEXT]='Detail Input:',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='30' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Not asked (due to responses to other questions)',
				--[CHOICE_TEXT]='Not asked (due to responses to other questions)',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='4' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0. None')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'0. None','None',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0. None')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='0. None',
				--[CHOICE_TEXT]='None',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='4' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1. One')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1. One','One',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1. One')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1. One',
				--[CHOICE_TEXT]='One',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='4' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2. Two')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2. Two','Two',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2. Two')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2. Two',
				--[CHOICE_TEXT]='Two',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='4' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3. Three')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3. Three','Three',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3. Three')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3. Three',
				--[CHOICE_TEXT]='Three',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='4' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Not asked (due to responses to other questions)',
				--[CHOICE_TEXT]='Not asked (due to responses to other questions)',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='4-A-1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Month:')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Month:','Month:',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Month:')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Month:',
				--[CHOICE_TEXT]='Month:',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='4-A-1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Not asked (due to responses to other questions)',
				--[CHOICE_TEXT]='Not asked (due to responses to other questions)',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='4-A-2' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Not asked (due to responses to other questions)',
				--[CHOICE_TEXT]='Not asked (due to responses to other questions)',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='4-A-2' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Year:')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Year:','Year:',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Year:')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Year:',
				--[CHOICE_TEXT]='Year:',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='4-B-1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Month:')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Month:','Month:',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Month:')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Month:',
				--[CHOICE_TEXT]='Month:',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='4-B-1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Not asked (due to responses to other questions)',
				--[CHOICE_TEXT]='Not asked (due to responses to other questions)',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='4-B-2' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Not asked (due to responses to other questions)',
				--[CHOICE_TEXT]='Not asked (due to responses to other questions)',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='4-B-2' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Year:')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Year:','Year:',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Year:')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Year:',
				--[CHOICE_TEXT]='Year:',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='4-C-1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Month:')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Month:','Month:',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Month:')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Month:',
				--[CHOICE_TEXT]='Month:',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='4-C-1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Not asked (due to responses to other questions)',
				--[CHOICE_TEXT]='Not asked (due to responses to other questions)',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='4-C-2' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Not asked (due to responses to other questions)',
				--[CHOICE_TEXT]='Not asked (due to responses to other questions)',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='4-C-2' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Year:')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Year:','Year:',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Year:')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Year:',
				--[CHOICE_TEXT]='Year:',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-A' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0 No')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'0 No','No',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0 No')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='0 No',
				--[CHOICE_TEXT]='No',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-A' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1 Yes, one episode')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1 Yes, one episode','Yes, one episode',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1 Yes, one episode')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1 Yes, one episode',
				--[CHOICE_TEXT]='Yes, one episode',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-A' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2 Yes, two episode')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2 Yes, two episode','Yes, two episodes',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2 Yes, two episode')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2 Yes, two episode',
				--[CHOICE_TEXT]='Yes, two episodes',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-A' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3 Yes, three episode')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3 Yes, three episode','Yes, three episodes',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3 Yes, three episode')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3 Yes, three episode',
				--[CHOICE_TEXT]='Yes, three episodes',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-A' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4 Yes, four episode')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4 Yes, four episode','Yes, four episodes',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4 Yes, four episode')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4 Yes, four episode',
				--[CHOICE_TEXT]='Yes, four episodes',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-A' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5 Yes, five or more episode')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5 Yes, five or more episode','Yes, five or more episodes',6,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5 Yes, five or more episode')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5 Yes, five or more episode',
				--[CHOICE_TEXT]='Yes, five or more episodes',
				--[CHOICE_SORT_ORDER]=6,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-A' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Not asked (due to responses to other questions)',
				--[CHOICE_TEXT]='Not asked (due to responses to other questions)',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-B' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0 No')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'0 No','No',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0 No')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='0 No',
				--[CHOICE_TEXT]='No',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-B' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1 Yes, one episode')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1 Yes, one episode','Yes, one episode',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1 Yes, one episode')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1 Yes, one episode',
				--[CHOICE_TEXT]='Yes, one episode',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-B' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2 Yes, two episode')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2 Yes, two episode','Yes, two episodes',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2 Yes, two episode')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2 Yes, two episode',
				--[CHOICE_TEXT]='Yes, two episodes',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-B' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3 Yes, three episode')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3 Yes, three episode','Yes, three episodes',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3 Yes, three episode')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3 Yes, three episode',
				--[CHOICE_TEXT]='Yes, three episodes',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-B' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4 Yes, four episode')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4 Yes, four episode','Yes, four episodes',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4 Yes, four episode')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4 Yes, four episode',
				--[CHOICE_TEXT]='Yes, four episodes',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-B' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5 Yes, five or more episode')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5 Yes, five or more episode','Yes, five or more episodes',6,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5 Yes, five or more episode')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5 Yes, five or more episode',
				--[CHOICE_TEXT]='Yes, five or more episodes',
				--[CHOICE_SORT_ORDER]=6,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-B' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Not asked (due to responses to other questions)',
				--[CHOICE_TEXT]='Not asked (due to responses to other questions)',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-C' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0 No')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'0 No','No',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0 No')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='0 No',
				--[CHOICE_TEXT]='No',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-C' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1 Yes, one episode')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1 Yes, one episode','Yes, one episode',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1 Yes, one episode')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1 Yes, one episode',
				--[CHOICE_TEXT]='Yes, one episode',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-C' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2 Yes, two episode')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2 Yes, two episode','Yes, two episodes',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2 Yes, two episode')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2 Yes, two episode',
				--[CHOICE_TEXT]='Yes, two episodes',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-C' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3 Yes, three episode')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3 Yes, three episode','Yes, three episodes',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3 Yes, three episode')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3 Yes, three episode',
				--[CHOICE_TEXT]='Yes, three episodes',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-C' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4 Yes, four episode')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4 Yes, four episode','Yes, four episodes',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4 Yes, four episode')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4 Yes, four episode',
				--[CHOICE_TEXT]='Yes, four episodes',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-C' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5 Yes, five or more episode')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5 Yes, five or more episode','Yes, five or more episodes',6,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5 Yes, five or more episode')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5 Yes, five or more episode',
				--[CHOICE_TEXT]='Yes, five or more episodes',
				--[CHOICE_SORT_ORDER]=6,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-C' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Not asked (due to responses to other questions)',
				--[CHOICE_TEXT]='Not asked (due to responses to other questions)',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-D' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0 No')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'0 No','No',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0 No')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='0 No',
				--[CHOICE_TEXT]='No',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-D' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1 Yes, one episode')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1 Yes, one episode','Yes, one episode',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1 Yes, one episode')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1 Yes, one episode',
				--[CHOICE_TEXT]='Yes, one episode',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-D' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2 Yes, two episode')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2 Yes, two episode','Yes, two episodes',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2 Yes, two episode')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2 Yes, two episode',
				--[CHOICE_TEXT]='Yes, two episodes',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-D' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3 Yes, three episode')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3 Yes, three episode','Yes, three episodes',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3 Yes, three episode')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3 Yes, three episode',
				--[CHOICE_TEXT]='Yes, three episodes',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-D' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4 Yes, four episode')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4 Yes, four episode','Yes, four episodes',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4 Yes, four episode')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4 Yes, four episode',
				--[CHOICE_TEXT]='Yes, four episodes',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-D' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5 Yes, five or more episode')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5 Yes, five or more episode','Yes, five or more episodes',6,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5 Yes, five or more episode')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5 Yes, five or more episode',
				--[CHOICE_TEXT]='Yes, five or more episodes',
				--[CHOICE_SORT_ORDER]=6,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-D' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Not asked (due to responses to other questions)',
				--[CHOICE_TEXT]='Not asked (due to responses to other questions)',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-D-1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0 No')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'0 No','No',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0 No')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='0 No',
				--[CHOICE_TEXT]='No',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-D-1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1 Yes, one episode')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1 Yes, one episode','Yes, one episode',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1 Yes, one episode')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1 Yes, one episode',
				--[CHOICE_TEXT]='Yes, one episode',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-D-1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2 Yes, two episode')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2 Yes, two episode','Yes, two episodes',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2 Yes, two episode')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2 Yes, two episode',
				--[CHOICE_TEXT]='Yes, two episodes',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-D-1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3 Yes, three episode')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3 Yes, three episode','Yes, three episodes',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3 Yes, three episode')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3 Yes, three episode',
				--[CHOICE_TEXT]='Yes, three episodes',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-D-1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4 Yes, four episode')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4 Yes, four episode','Yes, four episodes',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4 Yes, four episode')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4 Yes, four episode',
				--[CHOICE_TEXT]='Yes, four episodes',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-D-1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5 Yes, five or more episode')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5 Yes, five or more episode','Yes, five or more episodes',6,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5 Yes, five or more episode')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5 Yes, five or more episode',
				--[CHOICE_TEXT]='Yes, five or more episodes',
				--[CHOICE_SORT_ORDER]=6,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-D-1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Not asked (due to responses to other questions)',
				--[CHOICE_TEXT]='Not asked (due to responses to other questions)',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-D-1-a' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1. Less than 10 feet')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1. Less than 10 feet','Less than 10 feet',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1. Less than 10 feet')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1. Less than 10 feet',
				--[CHOICE_TEXT]='Less than 10 feet',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-D-1-a' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2. Between 10 and 30 feet')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2. Between 10 and 30 feet','Between 10 and 30 feet',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2. Between 10 and 30 feet')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2. Between 10 and 30 feet',
				--[CHOICE_TEXT]='Between 10 and 30 feet',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-D-1-a' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3. Between 31 and 50 feet')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3. Between 31 and 50 feet','Between 31 and 50 feet',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3. Between 31 and 50 feet')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3. Between 31 and 50 feet',
				--[CHOICE_TEXT]='Between 31 and 50 feet',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-D-1-a' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4. Great than 50 feet')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4. Great than 50 feet','Greater than 50 feet',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4. Great than 50 feet')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4. Great than 50 feet',
				--[CHOICE_TEXT]='Greater than 50 feet',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-D-1-a' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Not asked (due to responses to other questions)',
				--[CHOICE_TEXT]='Not asked (due to responses to other questions)',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-D-2' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0 No')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'0 No','No',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0 No')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='0 No',
				--[CHOICE_TEXT]='No',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-D-2' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1 Yes, one episode')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1 Yes, one episode','Yes, one episode',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1 Yes, one episode')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1 Yes, one episode',
				--[CHOICE_TEXT]='Yes, one episode',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-D-2' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2 Yes, two episode')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2 Yes, two episode','Yes, two episodes',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2 Yes, two episode')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2 Yes, two episode',
				--[CHOICE_TEXT]='Yes, two episodes',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-D-2' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3 Yes, three episode')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3 Yes, three episode','Yes, three episodes',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3 Yes, three episode')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3 Yes, three episode',
				--[CHOICE_TEXT]='Yes, three episodes',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-D-2' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4 Yes, four episode')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4 Yes, four episode','Yes, four episodes',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4 Yes, four episode')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4 Yes, four episode',
				--[CHOICE_TEXT]='Yes, four episodes',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-D-2' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5 Yes, five or more episode')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5 Yes, five or more episode','Yes, five or more episodes',6,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5 Yes, five or more episode')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5 Yes, five or more episode',
				--[CHOICE_TEXT]='Yes, five or more episodes',
				--[CHOICE_SORT_ORDER]=6,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-D-2' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Not asked (due to responses to other questions)',
				--[CHOICE_TEXT]='Not asked (due to responses to other questions)',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-D-3' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0 No')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'0 No','No',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0 No')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='0 No',
				--[CHOICE_TEXT]='No',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-D-3' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1 Yes, one episode')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1 Yes, one episode','Yes, one episode',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1 Yes, one episode')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1 Yes, one episode',
				--[CHOICE_TEXT]='Yes, one episode',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-D-3' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2 Yes, two episode')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2 Yes, two episode','Yes, two episodes',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2 Yes, two episode')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2 Yes, two episode',
				--[CHOICE_TEXT]='Yes, two episodes',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-D-3' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3 Yes, three episode')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3 Yes, three episode','Yes, three episodes',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3 Yes, three episode')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3 Yes, three episode',
				--[CHOICE_TEXT]='Yes, three episodes',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-D-3' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4 Yes, four episode')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4 Yes, four episode','Yes, four episodes',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4 Yes, four episode')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4 Yes, four episode',
				--[CHOICE_TEXT]='Yes, four episodes',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-D-3' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5 Yes, five or more episode')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5 Yes, five or more episode','Yes, five or more episodes',6,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5 Yes, five or more episode')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5 Yes, five or more episode',
				--[CHOICE_TEXT]='Yes, five or more episodes',
				--[CHOICE_SORT_ORDER]=6,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-D-3' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Not asked (due to responses to other questions)',
				--[CHOICE_TEXT]='Not asked (due to responses to other questions)',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-D-4' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0 No')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'0 No','No',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0 No')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='0 No',
				--[CHOICE_TEXT]='No',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-D-4' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1 Yes, one episode')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1 Yes, one episode','Yes, one episode',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1 Yes, one episode')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1 Yes, one episode',
				--[CHOICE_TEXT]='Yes, one episode',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-D-4' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2 Yes, two episode')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2 Yes, two episode','Yes, two episodes',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2 Yes, two episode')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2 Yes, two episode',
				--[CHOICE_TEXT]='Yes, two episodes',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-D-4' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3 Yes, three episode')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3 Yes, three episode','Yes, three episodes',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3 Yes, three episode')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3 Yes, three episode',
				--[CHOICE_TEXT]='Yes, three episodes',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-D-4' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4 Yes, four episode')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4 Yes, four episode','Yes, four episodes',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4 Yes, four episode')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4 Yes, four episode',
				--[CHOICE_TEXT]='Yes, four episodes',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-D-4' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5 Yes, five or more episode')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5 Yes, five or more episode','Yes, five or more episodes',6,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5 Yes, five or more episode')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5 Yes, five or more episode',
				--[CHOICE_TEXT]='Yes, five or more episodes',
				--[CHOICE_SORT_ORDER]=6,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-D-4' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Not asked (due to responses to other questions)',
				--[CHOICE_TEXT]='Not asked (due to responses to other questions)',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-D-5' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Bomb')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Bomb','Bomb',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Bomb')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Bomb',
				--[CHOICE_TEXT]='Bomb',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-D-5' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Grenade')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Grenade','Grenade',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Grenade')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Grenade',
				--[CHOICE_TEXT]='Grenade',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-D-5' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Improvised Explosive Device (IED)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Improvised Explosive Device (IED)','Improvised Explosive Device (IED)',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Improvised Explosive Device (IED)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Improvised Explosive Device (IED)',
				--[CHOICE_TEXT]='Improvised Explosive Device (IED)',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-D-5' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Mortar')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Mortar','Mortar',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Mortar')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Mortar',
				--[CHOICE_TEXT]='Mortar',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-D-5' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Not asked (due to responses to other questions)',
				--[CHOICE_TEXT]='Not asked (due to responses to other questions)',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-D-5' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Other')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Other','Other',6,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Other')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Other',
				--[CHOICE_TEXT]='Other',
				--[CHOICE_SORT_ORDER]=6,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-D-5' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Rocket Propelled Grenade (RPG)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Rocket Propelled Grenade (RPG)','Rocket Propelled Grenade (RPG)',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Rocket Propelled Grenade (RPG)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Rocket Propelled Grenade (RPG)',
				--[CHOICE_TEXT]='Rocket Propelled Grenade (RPG)',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-D-5' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Unknown')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Unknown','Unknown',7,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Unknown')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Unknown',
				--[CHOICE_TEXT]='Unknown',
				--[CHOICE_SORT_ORDER]=7,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-E' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0 No')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'0 No','No',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0 No')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='0 No',
				--[CHOICE_TEXT]='No',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-E' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1 Yes, one episode')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1 Yes, one episode','Yes, one episode',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1 Yes, one episode')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1 Yes, one episode',
				--[CHOICE_TEXT]='Yes, one episode',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-E' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2 Yes, two episode')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2 Yes, two episode','Yes, two episodes',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2 Yes, two episode')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2 Yes, two episode',
				--[CHOICE_TEXT]='Yes, two episodes',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-E' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3 Yes, three episode')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3 Yes, three episode','Yes, three episodes',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3 Yes, three episode')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3 Yes, three episode',
				--[CHOICE_TEXT]='Yes, three episodes',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-E' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4 Yes, four episode')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4 Yes, four episode','Yes, four episodes',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4 Yes, four episode')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4 Yes, four episode',
				--[CHOICE_TEXT]='Yes, four episodes',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-E' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5 Yes, five or more episode')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5 Yes, five or more episode','Yes, five or more episodes',6,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5 Yes, five or more episode')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5 Yes, five or more episode',
				--[CHOICE_TEXT]='Yes, five or more episodes',
				--[CHOICE_SORT_ORDER]=6,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='5-E' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Not asked (due to responses to other questions)',
				--[CHOICE_TEXT]='Not asked (due to responses to other questions)',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='6' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0 No')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'0 No','No',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0 No')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='0 No',
				--[CHOICE_TEXT]='No',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='6' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1 Yes, one episode')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1 Yes, one episode','Yes, one episode',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1 Yes, one episode')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1 Yes, one episode',
				--[CHOICE_TEXT]='Yes, one episode',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='6' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2 Yes, two episode')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2 Yes, two episode','Yes, two episodes',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2 Yes, two episode')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2 Yes, two episode',
				--[CHOICE_TEXT]='Yes, two episodes',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='6' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3 Yes, three episode')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3 Yes, three episode','Yes, three episodes',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3 Yes, three episode')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3 Yes, three episode',
				--[CHOICE_TEXT]='Yes, three episodes',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='6' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4 Yes, four episode')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4 Yes, four episode','Yes, four episodes',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4 Yes, four episode')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4 Yes, four episode',
				--[CHOICE_TEXT]='Yes, four episodes',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='6' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5 Yes, five or more episode')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5 Yes, five or more episode','Yes, five or more episodes',6,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5 Yes, five or more episode')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5 Yes, five or more episode',
				--[CHOICE_TEXT]='Yes, five or more episodes',
				--[CHOICE_SORT_ORDER]=6,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='6' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='6 Uncertain Missing')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'6 Uncertain Missing','Uncertain',7,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='6 Uncertain Missing')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='6 Uncertain Missing',
				--[CHOICE_TEXT]='Uncertain',
				--[CHOICE_SORT_ORDER]=7,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='6' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Not asked (due to responses to other questions)',
				--[CHOICE_TEXT]='Not asked (due to responses to other questions)',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='6-A' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Less than 30 minutes')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Less than 30 minutes','Less than 30 minutes',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Less than 30 minutes')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Less than 30 minutes',
				--[CHOICE_TEXT]='Less than 30 minutes',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='6-A' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Less than 6 hours')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Less than 6 hours','Less than 6 hours',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Less than 6 hours')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Less than 6 hours',
				--[CHOICE_TEXT]='Less than 6 hours',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='6-A' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='More than one week')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'More than one week','More than one week',6,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='More than one week')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='More than one week',
				--[CHOICE_TEXT]='More than one week',
				--[CHOICE_SORT_ORDER]=6,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='6-A' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Not asked (due to responses to other questions)',
				--[CHOICE_TEXT]='Not asked (due to responses to other questions)',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='6-A' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Up to a full day (24 hours)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Up to a full day (24 hours)','Up to a full day (24 hours)',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Up to a full day (24 hours)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Up to a full day (24 hours)',
				--[CHOICE_TEXT]='Up to a full day (24 hours)',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='6-A' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Up to a full week (7 days)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Up to a full week (7 days)','Up to a full week (7 days)',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Up to a full week (7 days)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Up to a full week (7 days)',
				--[CHOICE_TEXT]='Up to a full week (7 days)',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='6-A' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Very brief, probably less than 5 minutes')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Very brief, probably less than 5 minutes','Very brief, probably less than 5 minutes',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Very brief, probably less than 5 minutes')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Very brief, probably less than 5 minutes',
				--[CHOICE_TEXT]='Very brief, probably less than 5 minutes',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='7' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0 No')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'0 No','No',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0 No')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='0 No',
				--[CHOICE_TEXT]='No',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='7' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1 Yes, one episode')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1 Yes, one episode','Yes, one episode',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1 Yes, one episode')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1 Yes, one episode',
				--[CHOICE_TEXT]='Yes, one episode',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='7' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2 Yes, two episode')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2 Yes, two episode','Yes, two episodes',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2 Yes, two episode')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2 Yes, two episode',
				--[CHOICE_TEXT]='Yes, two episodes',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='7' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3 Yes, three episode')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3 Yes, three episode','Yes, three episodes',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3 Yes, three episode')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3 Yes, three episode',
				--[CHOICE_TEXT]='Yes, three episodes',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='7' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4 Yes, four episode')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4 Yes, four episode','Yes, four episodes',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4 Yes, four episode')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4 Yes, four episode',
				--[CHOICE_TEXT]='Yes, four episodes',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='7' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5 Yes, five or more episode')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5 Yes, five or more episode','Yes, five or more episodes',6,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5 Yes, five or more episode')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5 Yes, five or more episode',
				--[CHOICE_TEXT]='Yes, five or more episodes',
				--[CHOICE_SORT_ORDER]=6,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='7' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Not asked (due to responses to other questions)',
				--[CHOICE_TEXT]='Not asked (due to responses to other questions)',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='7' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Uncertain')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Uncertain','Uncertain',7,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Uncertain')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Uncertain',
				--[CHOICE_TEXT]='Uncertain',
				--[CHOICE_SORT_ORDER]=7,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='7-A' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Brief, probably less than 30 minutes')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Brief, probably less than 30 minutes','Brief, probably less than 30 minutes',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Brief, probably less than 30 minutes')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Brief, probably less than 30 minutes',
				--[CHOICE_TEXT]='Brief, probably less than 30 minutes',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='7-A' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='More than 3 months')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'More than 3 months','More than 3 months',6,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='More than 3 months')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='More than 3 months',
				--[CHOICE_TEXT]='More than 3 months',
				--[CHOICE_SORT_ORDER]=6,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='7-A' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Not asked (due to responses to other questions)',
				--[CHOICE_TEXT]='Not asked (due to responses to other questions)',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='7-A' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Up to 3 months')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Up to 3 months','Up to 3 months',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Up to 3 months')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Up to 3 months',
				--[CHOICE_TEXT]='Up to 3 months',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='7-A' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Up to a full day (24 hours)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Up to a full day (24 hours)','Up to a full day (24 hours)',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Up to a full day (24 hours)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Up to a full day (24 hours)',
				--[CHOICE_TEXT]='Up to a full day (24 hours)',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='7-A' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Up to a full week (7 days)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Up to a full week (7 days)','Up to a full week (7 days)',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Up to a full week (7 days)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Up to a full week (7 days)',
				--[CHOICE_TEXT]='Up to a full week (7 days)',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='7-A' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Up to one 1 month')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Up to one 1 month','Up to 1 month',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Up to one 1 month')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Up to one 1 month',
				--[CHOICE_TEXT]='Up to 1 month',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='8' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0 No')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'0 No','No',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0 No')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='0 No',
				--[CHOICE_TEXT]='No',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='8' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1 Yes, one episode')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1 Yes, one episode','Yes, one episode',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1 Yes, one episode')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1 Yes, one episode',
				--[CHOICE_TEXT]='Yes, one episode',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='8' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2 Yes, two episode')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2 Yes, two episode','Yes, two episodes',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2 Yes, two episode')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2 Yes, two episode',
				--[CHOICE_TEXT]='Yes, two episodes',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='8' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3 Yes, three episode')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3 Yes, three episode','Yes, three episodes',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3 Yes, three episode')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3 Yes, three episode',
				--[CHOICE_TEXT]='Yes, three episodes',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='8' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4 Yes, four episode')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4 Yes, four episode','Yes, four episodes',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4 Yes, four episode')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4 Yes, four episode',
				--[CHOICE_TEXT]='Yes, four episodes',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='8' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5 Yes, five or more episode')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5 Yes, five or more episode','Yes, five or more episodes',6,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5 Yes, five or more episode')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5 Yes, five or more episode',
				--[CHOICE_TEXT]='Yes, five or more episodes',
				--[CHOICE_SORT_ORDER]=6,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='8' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Not asked (due to responses to other questions)',
				--[CHOICE_TEXT]='Not asked (due to responses to other questions)',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='8' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Uncertain')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Uncertain','Uncertain',7,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Uncertain')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Uncertain',
				--[CHOICE_TEXT]='Uncertain',
				--[CHOICE_SORT_ORDER]=7,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='8-A' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Brief, probably less than 30 minutes')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Brief, probably less than 30 minutes','Brief, probably less than 30 minutes',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Brief, probably less than 30 minutes')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Brief, probably less than 30 minutes',
				--[CHOICE_TEXT]='Brief, probably less than 30 minutes',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='8-A' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='More than 3 months')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'More than 3 months','More than 3 months',6,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='More than 3 months')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='More than 3 months',
				--[CHOICE_TEXT]='More than 3 months',
				--[CHOICE_SORT_ORDER]=6,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='8-A' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Not asked (due to responses to other questions)',
				--[CHOICE_TEXT]='Not asked (due to responses to other questions)',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='8-A' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Up to 3 months')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Up to 3 months','Up to 3 months',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Up to 3 months')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Up to 3 months',
				--[CHOICE_TEXT]='Up to 3 months',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='8-A' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Up to a full day (24 hours)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Up to a full day (24 hours)','Up to a full day (24 hours)',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Up to a full day (24 hours)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Up to a full day (24 hours)',
				--[CHOICE_TEXT]='Up to a full day (24 hours)',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='8-A' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Up to a full week (7 days)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Up to a full week (7 days)','Up to a full week (7 days)',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Up to a full week (7 days)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Up to a full week (7 days)',
				--[CHOICE_TEXT]='Up to a full week (7 days)',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='8-A' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Up to one 1 month')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Up to one 1 month','Up to 1 month',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Up to one 1 month')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Up to one 1 month',
				--[CHOICE_TEXT]='Up to 1 month',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='9' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='No')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'No','No',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='No')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='No',
				--[CHOICE_TEXT]='No',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='9' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','Not asked (due to responses to other questions)',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Not asked (due to responses to other questions)',
				--[CHOICE_TEXT]='Not asked (due to responses to other questions)',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='9' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Yes')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Yes','Yes',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Yes')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Yes',
				--[CHOICE_TEXT]='Yes',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='A' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='No')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'No','No',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='No')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='No',
				--[CHOICE_TEXT]='No',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='A' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Not asked (due to responses to other questions)','',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Not asked (due to responses to other questions)')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Not asked (due to responses to other questions)',
				--[CHOICE_TEXT]='',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    
	Select @qID=id from dbo.std_question where Question_number='A' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Yes')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Yes','Yes',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Yes')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Yes',
				--[CHOICE_TEXT]='Yes',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    select @sID=id from dbo.std_survey_type where code='MPAI';
	Select @qID=id from dbo.std_question where Question_number='-1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Discharge Note')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Discharge Note','Discharge Note',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Discharge Note')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Discharge Note',
				--[CHOICE_TEXT]='Discharge Note',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='-1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Follow Up Note')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Follow Up Note','Follow Up Note',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Follow Up Note')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Follow Up Note',
				--[CHOICE_TEXT]='Follow Up Note',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='-1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Initial')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Initial','Initial',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Initial')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Initial',
				--[CHOICE_TEXT]='Initial',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='-1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Interim')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Interim','Interim',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Interim')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Interim',
				--[CHOICE_TEXT]='Interim',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='-11' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Initial Note Date')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Initial Note Date','Initial Note Date',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Initial Note Date')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Initial Note Date',
				--[CHOICE_TEXT]='Initial Note Date',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='-11' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Raw Score')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Raw Score','',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Raw Score')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Raw Score',
				--[CHOICE_TEXT]='',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='-11' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='T Score')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'T Score','',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='T Score')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='T Score',
				--[CHOICE_TEXT]='',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='-111' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Parent Note')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Parent Note','Parent Note',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Parent Note')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Parent Note',
				--[CHOICE_TEXT]='Parent Note',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='0' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Person with Brain Injury')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Person with Brain Injury','Person with Brain Injury',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Person with Brain Injury')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Person with Brain Injury',
				--[CHOICE_TEXT]='Person with Brain Injury',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='0' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Professional Consensus')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Professional Consensus','Professional Consensus',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Professional Consensus')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Professional Consensus',
				--[CHOICE_TEXT]='Professional Consensus',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='0' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Significant Other')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Significant Other','Significant Other',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Significant Other')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Significant Other',
				--[CHOICE_TEXT]='Significant Other',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='0' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Single Professional')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Single Professional','Single Professional',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Single Professional')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Single Professional',
				--[CHOICE_TEXT]='Single Professional',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='0-1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Other')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Other','Other',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Other')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Other',
				--[CHOICE_TEXT]='Other',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'0','None',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='0',
				--[CHOICE_TEXT]='None',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Mild problem but does not interfere with activities; may use assistive device or medication',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Mild problem but does not interfere with activities; may use assistive device or medication',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Mild problem; interferes with activities 5-24% of the time',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Mild problem; interferes with activities 5-24% of the time',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Moderate problem; interferes with activities 25-75% of the time',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Moderate problem; interferes with activities 25-75% of the time',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','Severe problem; interferes with activities more than 75% of the time',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='Severe problem; interferes with activities more than 75% of the time',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='2' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'0','Normal involvement with others',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='0',
				--[CHOICE_TEXT]='Normal involvement with others',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='2' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Mild difficulty in social situations but maintains normal involvement with others',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Mild difficulty in social situations but maintains normal involvement with others',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='2' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Mildly limited involvement with others (75-95% of normal interaction for age)',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Mildly limited involvement with others (75-95% of normal interaction for age)',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='2' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Moderately limited involvement with others (25-74% of normal interaction for age)',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Moderately limited involvement with others (25-74% of normal interaction for age)',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='2' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','No or rare involvement with others (less than 25% of normal interaction for age)',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='No or rare involvement with others (less than 25% of normal interaction for age)',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='3' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'0','Normal participation in leisure activities for age',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='0',
				--[CHOICE_TEXT]='Normal participation in leisure activities for age',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='3' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Mild difficulty in these activities but maintains normal participation',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Mild difficulty in these activities but maintains normal participation',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='3' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Mildly limited participation (75-95% of normal participation for age)',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Mildly limited participation (75-95% of normal participation for age)',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='3' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Moderately limited participation (25-74% of normal participation for age)',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Moderately limited participation (25-74% of normal participation for age)',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='3' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','No or rare participation (less than 25% of normal participation for age)',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='No or rare participation (less than 25% of normal participation for age)',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='4' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'0','Independent completion of self-care activities',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='0',
				--[CHOICE_TEXT]='Independent completion of self-care activities',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='4' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Mild difficulty, occasional omissions or mildly slowed completion of self-care; may use assistive device or require occasional prompting',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Mild difficulty, occasional omissions or mildly slowed completion of self-care; may use assistive device or require occasional prompting',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='4' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Requires a little assistance or supervision from others (5-24% of the time) including frequent prompting',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Requires a little assistance or supervision from others (5-24% of the time) including frequent prompting',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='4' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Requires moderate assistance or supervision from others (25-75% of the time)',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Requires moderate assistance or supervision from others (25-75% of the time)',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='4' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','Requires extensive assistance or supervision from others (more than 75% of the time)',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='Requires extensive assistance or supervision from others (more than 75% of the time)',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='5' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'0','Independent; living without supervision or concern from others',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='0',
				--[CHOICE_TEXT]='Independent; living without supervision or concern from others',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='5' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Living without supervision but others have concerns about safety or managing responsibilities',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Living without supervision but others have concerns about safety or managing responsibilities',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='5' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Requires a little assistance or supervision from others ( 5-24% of the time)',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Requires a little assistance or supervision from others ( 5-24% of the time)',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='5' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Requires moderate assistance or supervision from others (25-75% of the time)',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Requires moderate assistance or supervision from others (25-75% of the time)',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='5' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','Requires extensive assistance or supervision from others (more than 75% of the time)',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='Requires extensive assistance or supervision from others (more than 75% of the time)',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='6' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'0','Independent in all modes of transportation including independent ability to operate a personal motor vehicle',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='0',
				--[CHOICE_TEXT]='Independent in all modes of transportation including independent ability to operate a personal motor vehicle',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='6' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Independent in all modes of transportation, but others have concerns about safety',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Independent in all modes of transportation, but others have concerns about safety',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='6' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Requires a little assistance or supervision from others (5-24% of the time); cannot drive',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Requires a little assistance or supervision from others (5-24% of the time); cannot drive',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='6' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Requires moderate assistance or supervision from others (25-75% of the time); cannot drive',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Requires moderate assistance or supervision from others (25-75% of the time); cannot drive',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='6' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','Requires extensive assistance or supervision from others (more than 75% of the time); cannot drive',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='Requires extensive assistance or supervision from others (more than 75% of the time); cannot drive',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='7A' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'0','Full-time (more than 30 hrs/wk) without support',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='0',
				--[CHOICE_TEXT]='Full-time (more than 30 hrs/wk) without support',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='7A' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Part-time (3 to 30 hrs/ wk) without support',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Part-time (3 to 30 hrs/ wk) without support',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='7A' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Full-time or part-time with support',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Full-time or part-time with support',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='7A' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Sheltered work',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Sheltered work',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='7A' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','Unemployed; employed less than 3 hours per week',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='Unemployed; employed less than 3 hours per week',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='7B' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'0','Full-time (more than 30 hrs/wk) without support; full-time course load for students',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='0',
				--[CHOICE_TEXT]='Full-time (more than 30 hrs/wk) without support; full-time course load for students',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='7B' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Part-time (3 to 30 hrs/ wk) without support',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Part-time (3 to 30 hrs/ wk) without support',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='7B' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Full-time or part-time with support',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Full-time or part-time with support',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='7B' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Activities in a supervised environment other than a sheltered workshop',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Activities in a supervised environment other than a sheltered workshop',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='7B' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','Inactive; involved in role-appropriate activities less than 3 hours per week',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='Inactive; involved in role-appropriate activities less than 3 hours per week',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='7B-R' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Childrearing/care-giving')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Childrearing/care-giving','Childrearing/care-giving',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Childrearing/care-giving')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Childrearing/care-giving',
				--[CHOICE_TEXT]='Childrearing/care-giving',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='7B-R' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Homemaker, no childrearing or care-giving')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Homemaker, no childrearing or care-giving','Homemaker, no childrearing or care-giving',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Homemaker, no childrearing or care-giving')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Homemaker, no childrearing or care-giving',
				--[CHOICE_TEXT]='Homemaker, no childrearing or care-giving',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='7B-R' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Retired')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Retired','Retired (Check retired only if over age 60; if unemployed, retired as disabled and under age 60, indicate “Unemployed” for item 7A.)',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Retired')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Retired',
				--[CHOICE_TEXT]='Retired (Check retired only if over age 60; if unemployed, retired as disabled and under age 60, indicate “Unemployed” for item 7A.)',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='7B-R' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Student')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Student','Student',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Student')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Student',
				--[CHOICE_TEXT]='Student',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='7B-R' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Volunteer')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Volunteer','Volunteer',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Volunteer')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Volunteer',
				--[CHOICE_TEXT]='Volunteer',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='8' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'0','Independent, manages money without supervision or concern from others',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='0',
				--[CHOICE_TEXT]='Independent, manages money without supervision or concern from others',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='8' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Manages money independently, but others have concerns',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Manages money independently, but others have concerns',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='8' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Requires mild assistance or supervision from others (5-24% of the time)',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Requires mild assistance or supervision from others (5-24% of the time)',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='8' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Requires moderate assistance or supervision from others (25-75% of the time)',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Requires moderate assistance or supervision from others (25-75% of the time)',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='8' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','Requires extensive assistance or supervision from others (more than 75% of the time)',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='Requires extensive assistance or supervision from others (more than 75% of the time)',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='C1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Comment Item #1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Comment Item #1','Comment',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Comment Item #1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Comment Item #1',
				--[CHOICE_TEXT]='Comment',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='C2' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Comment Item #2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Comment Item #2','Comment',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Comment Item #2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Comment Item #2',
				--[CHOICE_TEXT]='Comment',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='C3' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Comment Item #3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Comment Item #3','Comment',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Comment Item #3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Comment Item #3',
				--[CHOICE_TEXT]='Comment',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='C4' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Comment Item #4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Comment Item #4','Comment',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Comment Item #4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Comment Item #4',
				--[CHOICE_TEXT]='Comment',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='C5' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Comment Item #5')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Comment Item #5','Comment',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Comment Item #5')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Comment Item #5',
				--[CHOICE_TEXT]='Comment',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='C6' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Comment Item #6')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Comment Item #6','Comment',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Comment Item #6')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Comment Item #6',
				--[CHOICE_TEXT]='Comment',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='C7A' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Comment Item #7A')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Comment Item #7A','Comment',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Comment Item #7A')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Comment Item #7A',
				--[CHOICE_TEXT]='Comment',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='C7B' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Comment Item #7B')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Comment Item #7B','Comment',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Comment Item #7B')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Comment Item #7B',
				--[CHOICE_TEXT]='Comment',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='C8' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Comment Item #8')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Comment Item #8','Comment',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Comment Item #8')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Comment Item #8',
				--[CHOICE_TEXT]='Comment',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    select @sID=id from dbo.std_survey_type where code='MRLCI';
	Select @qID=id from dbo.std_question where Question_number='1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'0','No',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='0',
				--[CHOICE_TEXT]='No',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Yes with help',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Yes with help',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','YES, if someone helps me',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='YES, if someone helps me',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Yes with supervision',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Yes with supervision',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','YES, if someone is near me',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='YES, if someone is near me',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Yes alone',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Yes alone',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','YES, alone, with ambulation aids',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='YES, alone, with ambulation aids',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','YES, alone, without ambulation aids',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='YES, alone, without ambulation aids',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='10' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'0','No',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='0',
				--[CHOICE_TEXT]='No',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='10' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Yes with help',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Yes with help',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='10' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','YES, if someone helps me',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='YES, if someone helps me',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='10' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Yes with supervision',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Yes with supervision',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='10' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','YES, if someone is near me',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='YES, if someone is near me',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='10' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Yes alone',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Yes alone',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='10' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','YES, alone, with ambulation aids',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='YES, alone, with ambulation aids',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='10' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','YES, alone, without ambulation aids',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='YES, alone, without ambulation aids',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='11' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'0','No',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='0',
				--[CHOICE_TEXT]='No',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='11' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Yes with help',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Yes with help',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='11' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','YES, if someone helps me',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='YES, if someone helps me',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='11' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Yes with supervision',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Yes with supervision',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='11' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','YES, if someone is near me',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='YES, if someone is near me',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='11' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Yes alone',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Yes alone',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='11' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','YES, alone, with ambulation aids',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='YES, alone, with ambulation aids',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='11' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','YES, alone, without ambulation aids',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='YES, alone, without ambulation aids',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='12' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'0','No',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='0',
				--[CHOICE_TEXT]='No',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='12' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Yes with help',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Yes with help',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='12' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','YES, if someone helps me',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='YES, if someone helps me',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='12' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Yes with supervision',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Yes with supervision',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='12' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','YES, if someone is near me',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='YES, if someone is near me',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='12' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Yes alone',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Yes alone',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='12' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','YES, alone, with ambulation aids',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='YES, alone, with ambulation aids',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='12' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','YES, alone, without ambulation aids',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='YES, alone, without ambulation aids',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='13' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'0','No',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='0',
				--[CHOICE_TEXT]='No',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='13' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Yes with help',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Yes with help',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='13' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','YES, if someone helps me',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='YES, if someone helps me',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='13' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Yes with supervision',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Yes with supervision',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='13' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','YES, if someone is near me',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='YES, if someone is near me',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='13' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Yes alone',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Yes alone',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='13' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','YES, alone, with ambulation aids',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='YES, alone, with ambulation aids',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='13' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','YES, alone, without ambulation aids',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='YES, alone, without ambulation aids',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='14' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'0','No',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='0',
				--[CHOICE_TEXT]='No',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='14' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Yes with help',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Yes with help',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='14' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','YES, if someone helps me',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='YES, if someone helps me',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='14' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Yes with supervision',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Yes with supervision',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='14' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','YES, if someone is near me',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='YES, if someone is near me',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='14' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Yes alone',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Yes alone',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='14' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','YES, alone, with ambulation aids',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='YES, alone, with ambulation aids',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='14' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','YES, alone, without ambulation aids',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='YES, alone, without ambulation aids',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='15' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Basic activities score')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Basic activities score','Basic activities score',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Basic activities score')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Basic activities score',
				--[CHOICE_TEXT]='Basic activities score',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='16' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Advanced activities score')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Advanced activities score','Advanced activities score',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Advanced activities score')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Advanced activities score',
				--[CHOICE_TEXT]='Advanced activities score',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='17' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Total score')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Total score','Total score',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Total score')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Total score',
				--[CHOICE_TEXT]='Total score',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='18' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Test Date')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Test Date','Test Date',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Test Date')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Test Date',
				--[CHOICE_TEXT]='Test Date',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='2' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'0','No',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='0',
				--[CHOICE_TEXT]='No',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='2' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Yes with help',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Yes with help',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='2' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','YES, if someone helps me',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='YES, if someone helps me',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='2' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Yes with supervision',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Yes with supervision',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='2' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','YES, if someone is near me',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='YES, if someone is near me',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='2' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Yes alone',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Yes alone',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='2' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','YES, alone, with ambulation aids',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='YES, alone, with ambulation aids',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='2' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','YES, alone, without ambulation aids',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='YES, alone, without ambulation aids',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='3' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'0','No',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='0',
				--[CHOICE_TEXT]='No',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='3' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Yes with help',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Yes with help',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='3' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','YES, if someone helps me',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='YES, if someone helps me',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='3' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Yes with supervision',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Yes with supervision',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='3' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','YES, if someone is near me',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='YES, if someone is near me',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='3' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Yes alone',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Yes alone',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='3' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','YES, alone, with ambulation aids',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='YES, alone, with ambulation aids',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='3' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','YES, alone, without ambulation aids',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='YES, alone, without ambulation aids',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='4' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'0','No',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='0',
				--[CHOICE_TEXT]='No',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='4' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Yes with help',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Yes with help',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='4' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','YES, if someone helps me',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='YES, if someone helps me',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='4' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Yes with supervision',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Yes with supervision',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='4' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','YES, if someone is near me',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='YES, if someone is near me',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='4' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Yes alone',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Yes alone',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='4' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','YES, alone, with ambulation aids',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='YES, alone, with ambulation aids',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='4' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','YES, alone, without ambulation aids',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='YES, alone, without ambulation aids',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='5' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'0','No',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='0',
				--[CHOICE_TEXT]='No',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='5' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Yes with help',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Yes with help',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='5' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','YES, if someone helps me',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='YES, if someone helps me',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='5' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Yes with supervision',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Yes with supervision',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='5' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','YES, if someone is near me',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='YES, if someone is near me',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='5' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Yes alone',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Yes alone',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='5' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','YES, alone, with ambulation aids',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='YES, alone, with ambulation aids',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='5' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','YES, alone, without ambulation aids',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='YES, alone, without ambulation aids',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='6' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'0','No',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='0',
				--[CHOICE_TEXT]='No',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='6' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Yes with help',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Yes with help',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='6' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','YES, if someone helps me',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='YES, if someone helps me',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='6' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Yes with supervision',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Yes with supervision',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='6' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','YES, if someone is near me',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='YES, if someone is near me',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='6' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Yes alone',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Yes alone',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='6' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','YES, alone, with ambulation aids',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='YES, alone, with ambulation aids',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='6' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','YES, alone, without ambulation aids',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='YES, alone, without ambulation aids',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='7' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'0','No',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='0',
				--[CHOICE_TEXT]='No',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='7' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Yes with help',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Yes with help',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='7' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','YES, if someone helps me',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='YES, if someone helps me',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='7' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Yes with supervision',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Yes with supervision',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='7' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','YES, if someone is near me',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='YES, if someone is near me',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='7' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Yes alone',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Yes alone',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='7' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','YES, alone, with ambulation aids',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='YES, alone, with ambulation aids',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='7' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','YES, alone, without ambulation aids',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='YES, alone, without ambulation aids',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='8' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'0','No',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='0',
				--[CHOICE_TEXT]='No',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='8' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Yes with help',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Yes with help',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='8' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','YES, if someone helps me',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='YES, if someone helps me',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='8' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Yes with supervision',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Yes with supervision',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='8' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','YES, if someone is near me',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='YES, if someone is near me',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='8' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Yes alone',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Yes alone',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='8' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','YES, alone, with ambulation aids',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='YES, alone, with ambulation aids',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='8' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','YES, alone, without ambulation aids',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='YES, alone, without ambulation aids',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='9' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'0','No',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='0')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='0',
				--[CHOICE_TEXT]='No',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='9' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Yes with help',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Yes with help',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='9' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','YES, if someone helps me',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='YES, if someone helps me',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='9' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Yes with supervision',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Yes with supervision',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='9' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','YES, if someone is near me',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='YES, if someone is near me',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='9' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Yes alone',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Yes alone',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='9' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','YES, alone, with ambulation aids',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='YES, alone, with ambulation aids',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='9' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','YES, alone, without ambulation aids',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='YES, alone, without ambulation aids',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='DX' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='a')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'a','Stroke',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='a')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='a',
				--[CHOICE_TEXT]='Stroke',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='DX' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='b')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'b','Brain Dysfunction (TBI/ABI)',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='b')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='b',
				--[CHOICE_TEXT]='Brain Dysfunction (TBI/ABI)',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='DX' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='c')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'c','Hearing Loss',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='c')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='c',
				--[CHOICE_TEXT]='Hearing Loss',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='DX' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='d')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'d','Visual Impairment',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='d')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='d',
				--[CHOICE_TEXT]='Visual Impairment',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='DX' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='e')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'e','SCI',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='e')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='e',
				--[CHOICE_TEXT]='SCI',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='DX' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='f')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'f','Amputation',6,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='f')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='f',
				--[CHOICE_TEXT]='Amputation',
				--[CHOICE_SORT_ORDER]=6,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='DX' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='g')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'g','Pain',7,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='g')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='g',
				--[CHOICE_TEXT]='Pain',
				--[CHOICE_SORT_ORDER]=7,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='DX' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='h')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'h','Orthopedic Conditions',8,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='h')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='h',
				--[CHOICE_TEXT]='Orthopedic Conditions',
				--[CHOICE_SORT_ORDER]=8,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='DX' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='i')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'i','Cardio-pulmonary',9,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='i')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='i',
				--[CHOICE_TEXT]='Cardio-pulmonary',
				--[CHOICE_SORT_ORDER]=9,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='DX' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='j')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'j','Multiple Trauma',10,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='j')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='j',
				--[CHOICE_TEXT]='Multiple Trauma',
				--[CHOICE_SORT_ORDER]=10,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='DX' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='k')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'k','Debility',11,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='k')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='k',
				--[CHOICE_TEXT]='Debility',
				--[CHOICE_SORT_ORDER]=11,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




   
	Select @qID=id from dbo.std_question where Question_number='DX' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='l')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'l','Other',12,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='l')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='l',
				--[CHOICE_TEXT]='Other',
				--[CHOICE_SORT_ORDER]=12,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Working full-time outside of home',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Working full-time outside of home',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    select @sID=id from dbo.std_survey_type where code='Optimal';
	Select @qID=id from dbo.std_question where Question_number='1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='10')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'10','Unemployed',10,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='10')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='10',
				--[CHOICE_TEXT]='Unemployed',
				--[CHOICE_SORT_ORDER]=10,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Working part-time outside of home',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Working part-time outside of home',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Working full-time from home',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Working full-time from home',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','Working part-time from home',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='Working part-time from home',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5','Working with modification in job because of current illness/injury',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5',
				--[CHOICE_TEXT]='Working with modification in job because of current illness/injury',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='6')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'6','Not working because of current illness/ injury',6,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='6')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='6',
				--[CHOICE_TEXT]='Not working because of current illness/ injury',
				--[CHOICE_SORT_ORDER]=6,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='7')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'7','Homemaker',7,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='7')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='7',
				--[CHOICE_TEXT]='Homemaker',
				--[CHOICE_SORT_ORDER]=7,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='8')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'8','Student',8,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='8')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='8',
				--[CHOICE_TEXT]='Student',
				--[CHOICE_SORT_ORDER]=8,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'9','Retired',9,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='9',
				--[CHOICE_TEXT]='Retired',
				--[CHOICE_SORT_ORDER]=9,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Occupation')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Occupation','Occupation',11,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Occupation')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Occupation',
				--[CHOICE_TEXT]='Occupation',
				--[CHOICE_SORT_ORDER]=11,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='2' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Cane?',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Cane?',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='2' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Walker, rolling walker, or rollator?',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Walker, rolling walker, or rollator?',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='2' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Manual wheelchair?',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Manual wheelchair?',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='2' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','Motorized wheelchair?',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='Motorized wheelchair?',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='2' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5','Other',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5',
				--[CHOICE_TEXT]='Other',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='3' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Alone',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Alone',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='3' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Spouse/significant other',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Spouse/significant other',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='3' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Child/children',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Child/children',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='3' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','Other relative(s)',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='Other relative(s)',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='3' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5','Group setting',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5',
				--[CHOICE_TEXT]='Group setting',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='3' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='6')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'6','Personal care attendant',6,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='6')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='6',
				--[CHOICE_TEXT]='Personal care attendant',
				--[CHOICE_SORT_ORDER]=6,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='3' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='7')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'7','Other:',7,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='7')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='7',
				--[CHOICE_TEXT]='Other:',
				--[CHOICE_SORT_ORDER]=7,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='4' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Private home',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Private home',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='4' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Private apartment',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Private apartment',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='4' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Rented room',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Rented room',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='4' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','Board and care/assisted living/group home',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='Board and care/assisted living/group home',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='4' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5','Homeless (with or without shelter)',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5',
				--[CHOICE_TEXT]='Homeless (with or without shelter)',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='4' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='6')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'6','Long-term care facility (nursing home)',6,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='6')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='6',
				--[CHOICE_TEXT]='Long-term care facility (nursing home)',
				--[CHOICE_SORT_ORDER]=6,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='4' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='7')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'7','Hospice',7,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='7')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='7',
				--[CHOICE_TEXT]='Hospice',
				--[CHOICE_SORT_ORDER]=7,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='4' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='8')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'8','Other',8,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='8')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='8',
				--[CHOICE_TEXT]='Other',
				--[CHOICE_SORT_ORDER]=8,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Able to do without any difficulty',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Able to do without any difficulty',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Able to do with little difficulty',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Able to do with little difficulty',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Able to do with moderate difficulty',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Able to do with moderate difficulty',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','Able to do with much difficulty',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='Able to do with much difficulty',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5','Unable to do',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5',
				--[CHOICE_TEXT]='Unable to do',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'9','Not applicable',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='9',
				--[CHOICE_TEXT]='Not applicable',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-10' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Able to do without any difficulty',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Able to do without any difficulty',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-10' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Able to do with little difficulty',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Able to do with little difficulty',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-10' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Able to do with moderate difficulty',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Able to do with moderate difficulty',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-10' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','Able to do with much difficulty',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='Able to do with much difficulty',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-10' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5','Unable to do',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5',
				--[CHOICE_TEXT]='Unable to do',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-10' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'9','Not applicable',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='9',
				--[CHOICE_TEXT]='Not applicable',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-11' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Able to do without any difficulty',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Able to do without any difficulty',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-11' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Able to do with little difficulty',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Able to do with little difficulty',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-11' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Able to do with moderate difficulty',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Able to do with moderate difficulty',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-11' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','Able to do with much difficulty',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='Able to do with much difficulty',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-11' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5','Unable to do',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5',
				--[CHOICE_TEXT]='Unable to do',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-11' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'9','Not applicable',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='9',
				--[CHOICE_TEXT]='Not applicable',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-12' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Able to do without any difficulty',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Able to do without any difficulty',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-12' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Able to do with little difficulty',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Able to do with little difficulty',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-12' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Able to do with moderate difficulty',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Able to do with moderate difficulty',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-12' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','Able to do with much difficulty',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='Able to do with much difficulty',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-12' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5','Unable to do',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5',
				--[CHOICE_TEXT]='Unable to do',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-12' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'9','Not applicable',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='9',
				--[CHOICE_TEXT]='Not applicable',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-13' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Able to do without any difficulty',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Able to do without any difficulty',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-13' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Able to do with little difficulty',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Able to do with little difficulty',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-13' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Able to do with moderate difficulty',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Able to do with moderate difficulty',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-13' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','Able to do with much difficulty',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='Able to do with much difficulty',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-13' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5','Unable to do',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5',
				--[CHOICE_TEXT]='Unable to do',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-13' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'9','Not applicable',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='9',
				--[CHOICE_TEXT]='Not applicable',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-14' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Able to do without any difficulty',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Able to do without any difficulty',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-14' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Able to do with little difficulty',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Able to do with little difficulty',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-14' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Able to do with moderate difficulty',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Able to do with moderate difficulty',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-14' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','Able to do with much difficulty',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='Able to do with much difficulty',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-14' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5','Unable to do',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5',
				--[CHOICE_TEXT]='Unable to do',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-14' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'9','Not applicable',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='9',
				--[CHOICE_TEXT]='Not applicable',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-15' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Able to do without any difficulty',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Able to do without any difficulty',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-15' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Able to do with little difficulty',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Able to do with little difficulty',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-15' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Able to do with moderate difficulty',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Able to do with moderate difficulty',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-15' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','Able to do with much difficulty',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='Able to do with much difficulty',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-15' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5','Unable to do',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5',
				--[CHOICE_TEXT]='Unable to do',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-15' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'9','Not applicable',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='9',
				--[CHOICE_TEXT]='Not applicable',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-16' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Able to do without any difficulty',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Able to do without any difficulty',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-16' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Able to do with little difficulty',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Able to do with little difficulty',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-16' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Able to do with moderate difficulty',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Able to do with moderate difficulty',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-16' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','Able to do with much difficulty',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='Able to do with much difficulty',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-16' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5','Unable to do',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5',
				--[CHOICE_TEXT]='Unable to do',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-16' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'9','Not applicable',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='9',
				--[CHOICE_TEXT]='Not applicable',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-17' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Able to do without any difficulty',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Able to do without any difficulty',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-17' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Able to do with little difficulty',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Able to do with little difficulty',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-17' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Able to do with moderate difficulty',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Able to do with moderate difficulty',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-17' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','Able to do with much difficulty',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='Able to do with much difficulty',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-17' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5','Unable to do',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5',
				--[CHOICE_TEXT]='Unable to do',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-17' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'9','Not applicable',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='9',
				--[CHOICE_TEXT]='Not applicable',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-18' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Able to do without any difficulty',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Able to do without any difficulty',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-18' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Able to do with little difficulty',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Able to do with little difficulty',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-18' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Able to do with moderate difficulty',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Able to do with moderate difficulty',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-18' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','Able to do with much difficulty',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='Able to do with much difficulty',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-18' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5','Unable to do',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5',
				--[CHOICE_TEXT]='Unable to do',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-18' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'9','Not applicable',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='9',
				--[CHOICE_TEXT]='Not applicable',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-19' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Able to do without any difficulty',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Able to do without any difficulty',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-19' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Able to do with little difficulty',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Able to do with little difficulty',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-19' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Able to do with moderate difficulty',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Able to do with moderate difficulty',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-19' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','Able to do with much difficulty',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='Able to do with much difficulty',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-19' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5','Unable to do',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5',
				--[CHOICE_TEXT]='Unable to do',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-19' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'9','Not applicable',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='9',
				--[CHOICE_TEXT]='Not applicable',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-2' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Able to do without any difficulty',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Able to do without any difficulty',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-2' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Able to do with little difficulty',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Able to do with little difficulty',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-2' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Able to do with moderate difficulty',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Able to do with moderate difficulty',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-2' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','Able to do with much difficulty',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='Able to do with much difficulty',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-2' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5','Unable to do',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5',
				--[CHOICE_TEXT]='Unable to do',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-2' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'9','Not applicable',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='9',
				--[CHOICE_TEXT]='Not applicable',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-20' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Able to do without any difficulty',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Able to do without any difficulty',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-20' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Able to do with little difficulty',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Able to do with little difficulty',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-20' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Able to do with moderate difficulty',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Able to do with moderate difficulty',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-20' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','Able to do with much difficulty',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='Able to do with much difficulty',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-20' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5','Unable to do',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5',
				--[CHOICE_TEXT]='Unable to do',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-20' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'9','Not applicable',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='9',
				--[CHOICE_TEXT]='Not applicable',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-21' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Able to do without any difficulty',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Able to do without any difficulty',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-21' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Able to do with little difficulty',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Able to do with little difficulty',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-21' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Able to do with moderate difficulty',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Able to do with moderate difficulty',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-21' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','Able to do with much difficulty',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='Able to do with much difficulty',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-21' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5','Unable to do',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5',
				--[CHOICE_TEXT]='Unable to do',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-21' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'9','Not applicable',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='9',
				--[CHOICE_TEXT]='Not applicable',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-22' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Able to do without any difficulty',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Able to do without any difficulty',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-22' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Able to do with little difficulty',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Able to do with little difficulty',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-22' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Able to do with moderate difficulty',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Able to do with moderate difficulty',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-22' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','Able to do with much difficulty',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='Able to do with much difficulty',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-22' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5','Unable to do',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5',
				--[CHOICE_TEXT]='Unable to do',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-22' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'9','Not applicable',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='9',
				--[CHOICE_TEXT]='Not applicable',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Able to do without any difficulty',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Able to do without any difficulty',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Able to do with little difficulty',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Able to do with little difficulty',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Able to do with moderate difficulty',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Able to do with moderate difficulty',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','Able to do with much difficulty',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='Able to do with much difficulty',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5','Unable to do',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5',
				--[CHOICE_TEXT]='Unable to do',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'9','Not applicable',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='9',
				--[CHOICE_TEXT]='Not applicable',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23a' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Balancing')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Balancing','Balancing',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Balancing')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Balancing',
				--[CHOICE_TEXT]='Balancing',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23a' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Bending/stooping')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Bending/stooping','Bending/stooping',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Bending/stooping')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Bending/stooping',
				--[CHOICE_TEXT]='Bending/stooping',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23a' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Carrying')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Carrying','Carrying',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Carrying')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Carrying',
				--[CHOICE_TEXT]='Carrying',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23a' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Climbing stairs')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Climbing stairs','Climbing stairs',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Climbing stairs')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Climbing stairs',
				--[CHOICE_TEXT]='Climbing stairs',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23a' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Grasping')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Grasping','Grasping',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Grasping')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Grasping',
				--[CHOICE_TEXT]='Grasping',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23a' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Hopping')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Hopping','Hopping',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Hopping')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Hopping',
				--[CHOICE_TEXT]='Hopping',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23a' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Jumping')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Jumping','Jumping',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Jumping')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Jumping',
				--[CHOICE_TEXT]='Jumping',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23a' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Kneeling')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Kneeling','Kneeling',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Kneeling')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Kneeling',
				--[CHOICE_TEXT]='Kneeling',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23a' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Lifting')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Lifting','Lifting',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Lifting')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Lifting',
				--[CHOICE_TEXT]='Lifting',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23a' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Lying flat')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Lying flat','Lying flat',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Lying flat')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Lying flat',
				--[CHOICE_TEXT]='Lying flat',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23a' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Moving-lying to sitting')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Moving-lying to sitting','Moving-lying to sitting',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Moving-lying to sitting')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Moving-lying to sitting',
				--[CHOICE_TEXT]='Moving-lying to sitting',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23a' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Pulling')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Pulling','Pulling',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Pulling')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Pulling',
				--[CHOICE_TEXT]='Pulling',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23a' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Pushing')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Pushing','Pushing',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Pushing')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Pushing',
				--[CHOICE_TEXT]='Pushing',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23a' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Reaching')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Reaching','Reaching',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Reaching')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Reaching',
				--[CHOICE_TEXT]='Reaching',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23a' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Rolling over')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Rolling over','Rolling over',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Rolling over')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Rolling over',
				--[CHOICE_TEXT]='Rolling over',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23a' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Running')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Running','Running',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Running')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Running',
				--[CHOICE_TEXT]='Running',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23a' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Sitting')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Sitting','Sitting',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Sitting')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Sitting',
				--[CHOICE_TEXT]='Sitting',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23a' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Squatting')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Squatting','Squatting',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Squatting')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Squatting',
				--[CHOICE_TEXT]='Squatting',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23a' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Standing')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Standing','Standing',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Standing')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Standing',
				--[CHOICE_TEXT]='Standing',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23a' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Walking-long distance')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Walking-long distance','Walking-long distance',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Walking-long distance')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Walking-long distance',
				--[CHOICE_TEXT]='Walking-long distance',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23a' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Walking-outdoors')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Walking-outdoors','Walking-outdoors',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Walking-outdoors')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Walking-outdoors',
				--[CHOICE_TEXT]='Walking-outdoors',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23a' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Walking-short distance')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Walking-short distance','Walking-short distance',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Walking-short distance')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Walking-short distance',
				--[CHOICE_TEXT]='Walking-short distance',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23b' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Balancing')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Balancing','Balancing',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Balancing')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Balancing',
				--[CHOICE_TEXT]='Balancing',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23b' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Bending/stooping')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Bending/stooping','Bending/stooping',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Bending/stooping')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Bending/stooping',
				--[CHOICE_TEXT]='Bending/stooping',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23b' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Carrying')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Carrying','Carrying',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Carrying')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Carrying',
				--[CHOICE_TEXT]='Carrying',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23b' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Climbing stairs')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Climbing stairs','Climbing stairs',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Climbing stairs')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Climbing stairs',
				--[CHOICE_TEXT]='Climbing stairs',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23b' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Grasping')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Grasping','Grasping',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Grasping')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Grasping',
				--[CHOICE_TEXT]='Grasping',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23b' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Hopping')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Hopping','Hopping',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Hopping')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Hopping',
				--[CHOICE_TEXT]='Hopping',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23b' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Jumping')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Jumping','Jumping',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Jumping')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Jumping',
				--[CHOICE_TEXT]='Jumping',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23b' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Kneeling')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Kneeling','Kneeling',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Kneeling')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Kneeling',
				--[CHOICE_TEXT]='Kneeling',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23b' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Lifting')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Lifting','Lifting',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Lifting')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Lifting',
				--[CHOICE_TEXT]='Lifting',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23b' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Lying flat')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Lying flat','Lying flat',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Lying flat')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Lying flat',
				--[CHOICE_TEXT]='Lying flat',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23b' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Moving-lying to sitting')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Moving-lying to sitting','Moving-lying to sitting',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Moving-lying to sitting')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Moving-lying to sitting',
				--[CHOICE_TEXT]='Moving-lying to sitting',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23b' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Pulling')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Pulling','Pulling',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Pulling')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Pulling',
				--[CHOICE_TEXT]='Pulling',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23b' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Pushing')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Pushing','Pushing',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Pushing')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Pushing',
				--[CHOICE_TEXT]='Pushing',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23b' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Reaching')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Reaching','Reaching',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Reaching')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Reaching',
				--[CHOICE_TEXT]='Reaching',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23b' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Rolling over')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Rolling over','Rolling over',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Rolling over')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Rolling over',
				--[CHOICE_TEXT]='Rolling over',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23b' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Running')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Running','Running',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Running')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Running',
				--[CHOICE_TEXT]='Running',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23b' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Sitting')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Sitting','Sitting',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Sitting')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Sitting',
				--[CHOICE_TEXT]='Sitting',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23b' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Squatting')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Squatting','Squatting',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Squatting')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Squatting',
				--[CHOICE_TEXT]='Squatting',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23b' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Standing')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Standing','Standing',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Standing')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Standing',
				--[CHOICE_TEXT]='Standing',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23b' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Walking-long distance')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Walking-long distance','Walking-long distance',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Walking-long distance')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Walking-long distance',
				--[CHOICE_TEXT]='Walking-long distance',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23b' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Walking-outdoors')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Walking-outdoors','Walking-outdoors',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Walking-outdoors')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Walking-outdoors',
				--[CHOICE_TEXT]='Walking-outdoors',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23b' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Walking-short distance')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Walking-short distance','Walking-short distance',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Walking-short distance')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Walking-short distance',
				--[CHOICE_TEXT]='Walking-short distance',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23c' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Balancing')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Balancing','Balancing',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Balancing')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Balancing',
				--[CHOICE_TEXT]='Balancing',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23c' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Bending/stooping')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Bending/stooping','Bending/stooping',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Bending/stooping')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Bending/stooping',
				--[CHOICE_TEXT]='Bending/stooping',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23c' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Carrying')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Carrying','Carrying',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Carrying')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Carrying',
				--[CHOICE_TEXT]='Carrying',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23c' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Climbing stairs')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Climbing stairs','Climbing stairs',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Climbing stairs')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Climbing stairs',
				--[CHOICE_TEXT]='Climbing stairs',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23c' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Grasping')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Grasping','Grasping',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Grasping')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Grasping',
				--[CHOICE_TEXT]='Grasping',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23c' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Hopping')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Hopping','Hopping',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Hopping')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Hopping',
				--[CHOICE_TEXT]='Hopping',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23c' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Jumping')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Jumping','Jumping',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Jumping')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Jumping',
				--[CHOICE_TEXT]='Jumping',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23c' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Kneeling')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Kneeling','Kneeling',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Kneeling')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Kneeling',
				--[CHOICE_TEXT]='Kneeling',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23c' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Lifting')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Lifting','Lifting',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Lifting')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Lifting',
				--[CHOICE_TEXT]='Lifting',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23c' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Lying flat')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Lying flat','Lying flat',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Lying flat')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Lying flat',
				--[CHOICE_TEXT]='Lying flat',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23c' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Moving-lying to sitting')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Moving-lying to sitting','Moving-lying to sitting',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Moving-lying to sitting')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Moving-lying to sitting',
				--[CHOICE_TEXT]='Moving-lying to sitting',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23c' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Pulling')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Pulling','Pulling',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Pulling')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Pulling',
				--[CHOICE_TEXT]='Pulling',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23c' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Pushing')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Pushing','Pushing',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Pushing')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Pushing',
				--[CHOICE_TEXT]='Pushing',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23c' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Reaching')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Reaching','Reaching',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Reaching')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Reaching',
				--[CHOICE_TEXT]='Reaching',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23c' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Rolling over')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Rolling over','Rolling over',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Rolling over')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Rolling over',
				--[CHOICE_TEXT]='Rolling over',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23c' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Running')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Running','Running',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Running')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Running',
				--[CHOICE_TEXT]='Running',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23c' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Sitting')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Sitting','Sitting',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Sitting')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Sitting',
				--[CHOICE_TEXT]='Sitting',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23c' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Squatting')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Squatting','Squatting',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Squatting')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Squatting',
				--[CHOICE_TEXT]='Squatting',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23c' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Standing')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Standing','Standing',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Standing')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Standing',
				--[CHOICE_TEXT]='Standing',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23c' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Walking-long distance')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Walking-long distance','Walking-long distance',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Walking-long distance')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Walking-long distance',
				--[CHOICE_TEXT]='Walking-long distance',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23c' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Walking-outdoors')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Walking-outdoors','Walking-outdoors',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Walking-outdoors')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Walking-outdoors',
				--[CHOICE_TEXT]='Walking-outdoors',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-23c' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Walking-short distance')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Walking-short distance','Walking-short distance',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Walking-short distance')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Walking-short distance',
				--[CHOICE_TEXT]='Walking-short distance',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-24' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Balancing')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Balancing','Balancing',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Balancing')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Balancing',
				--[CHOICE_TEXT]='Balancing',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-24' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Bending/stooping')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Bending/stooping','Bending/stooping',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Bending/stooping')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Bending/stooping',
				--[CHOICE_TEXT]='Bending/stooping',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-24' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Carrying')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Carrying','Carrying',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Carrying')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Carrying',
				--[CHOICE_TEXT]='Carrying',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-24' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Climbing stairs')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Climbing stairs','Climbing stairs',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Climbing stairs')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Climbing stairs',
				--[CHOICE_TEXT]='Climbing stairs',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-24' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Grasping')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Grasping','Grasping',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Grasping')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Grasping',
				--[CHOICE_TEXT]='Grasping',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-24' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Hopping')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Hopping','Hopping',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Hopping')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Hopping',
				--[CHOICE_TEXT]='Hopping',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-24' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Jumping')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Jumping','Jumping',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Jumping')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Jumping',
				--[CHOICE_TEXT]='Jumping',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-24' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Kneeling')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Kneeling','Kneeling',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Kneeling')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Kneeling',
				--[CHOICE_TEXT]='Kneeling',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-24' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Lifting')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Lifting','Lifting',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Lifting')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Lifting',
				--[CHOICE_TEXT]='Lifting',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-24' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Lying flat')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Lying flat','Lying flat',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Lying flat')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Lying flat',
				--[CHOICE_TEXT]='Lying flat',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-24' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Moving-lying to sitting')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Moving-lying to sitting','Moving-lying to sitting',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Moving-lying to sitting')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Moving-lying to sitting',
				--[CHOICE_TEXT]='Moving-lying to sitting',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-24' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Pulling')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Pulling','Pulling',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Pulling')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Pulling',
				--[CHOICE_TEXT]='Pulling',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-24' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Pushing')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Pushing','Pushing',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Pushing')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Pushing',
				--[CHOICE_TEXT]='Pushing',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-24' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Reaching')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Reaching','Reaching',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Reaching')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Reaching',
				--[CHOICE_TEXT]='Reaching',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-24' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Rolling over')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Rolling over','Rolling over',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Rolling over')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Rolling over',
				--[CHOICE_TEXT]='Rolling over',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-24' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Running')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Running','Running',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Running')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Running',
				--[CHOICE_TEXT]='Running',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-24' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Sitting')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Sitting','Sitting',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Sitting')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Sitting',
				--[CHOICE_TEXT]='Sitting',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-24' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Squatting')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Squatting','Squatting',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Squatting')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Squatting',
				--[CHOICE_TEXT]='Squatting',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-24' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Standing')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Standing','Standing',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Standing')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Standing',
				--[CHOICE_TEXT]='Standing',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-24' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Walking-long distance')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Walking-long distance','Walking-long distance',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Walking-long distance')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Walking-long distance',
				--[CHOICE_TEXT]='Walking-long distance',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-24' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Walking-outdoors')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Walking-outdoors','Walking-outdoors',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Walking-outdoors')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Walking-outdoors',
				--[CHOICE_TEXT]='Walking-outdoors',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-24' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Walking-short distance')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Walking-short distance','Walking-short distance',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Walking-short distance')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Walking-short distance',
				--[CHOICE_TEXT]='Walking-short distance',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-3' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Able to do without any difficulty',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Able to do without any difficulty',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-3' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Able to do with little difficulty',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Able to do with little difficulty',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-3' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Able to do with moderate difficulty',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Able to do with moderate difficulty',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-3' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','Able to do with much difficulty',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='Able to do with much difficulty',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-3' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5','Unable to do',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5',
				--[CHOICE_TEXT]='Unable to do',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-3' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'9','Not applicable',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='9',
				--[CHOICE_TEXT]='Not applicable',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-4' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Able to do without any difficulty',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Able to do without any difficulty',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-4' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Able to do with little difficulty',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Able to do with little difficulty',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-4' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Able to do with moderate difficulty',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Able to do with moderate difficulty',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-4' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','Able to do with much difficulty',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='Able to do with much difficulty',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-4' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5','Unable to do',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5',
				--[CHOICE_TEXT]='Unable to do',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-4' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'9','Not applicable',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='9',
				--[CHOICE_TEXT]='Not applicable',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-5' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Able to do without any difficulty',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Able to do without any difficulty',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-5' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Able to do with little difficulty',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Able to do with little difficulty',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-5' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Able to do with moderate difficulty',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Able to do with moderate difficulty',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-5' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','Able to do with much difficulty',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='Able to do with much difficulty',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-5' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5','Unable to do',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5',
				--[CHOICE_TEXT]='Unable to do',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-5' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'9','Not applicable',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='9',
				--[CHOICE_TEXT]='Not applicable',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-6' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Able to do without any difficulty',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Able to do without any difficulty',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-6' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Able to do with little difficulty',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Able to do with little difficulty',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-6' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Able to do with moderate difficulty',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Able to do with moderate difficulty',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-6' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','Able to do with much difficulty',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='Able to do with much difficulty',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-6' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5','Unable to do',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5',
				--[CHOICE_TEXT]='Unable to do',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-6' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'9','Not applicable',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='9',
				--[CHOICE_TEXT]='Not applicable',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-7' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Able to do without any difficulty',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Able to do without any difficulty',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-7' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Able to do with little difficulty',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Able to do with little difficulty',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-7' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Able to do with moderate difficulty',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Able to do with moderate difficulty',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-7' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','Able to do with much difficulty',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='Able to do with much difficulty',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-7' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5','Unable to do',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5',
				--[CHOICE_TEXT]='Unable to do',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-7' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'9','Not applicable',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='9',
				--[CHOICE_TEXT]='Not applicable',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-8' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Able to do without any difficulty',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Able to do without any difficulty',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-8' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Able to do with little difficulty',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Able to do with little difficulty',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-8' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Able to do with moderate difficulty',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Able to do with moderate difficulty',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-8' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','Able to do with much difficulty',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='Able to do with much difficulty',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-8' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5','Unable to do',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5',
				--[CHOICE_TEXT]='Unable to do',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-8' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'9','Not applicable',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='9',
				--[CHOICE_TEXT]='Not applicable',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-9' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Able to do without any difficulty',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Able to do without any difficulty',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-9' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Able to do with little difficulty',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Able to do with little difficulty',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-9' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Able to do with moderate difficulty',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Able to do with moderate difficulty',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-9' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','Able to do with much difficulty',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='Able to do with much difficulty',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-9' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5','Unable to do',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5',
				--[CHOICE_TEXT]='Unable to do',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Baseline Difficulty-9' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'9','Not applicable',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='9',
				--[CHOICE_TEXT]='Not applicable',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='DX' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='a')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'a','Stroke',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='a')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='a',
				--[CHOICE_TEXT]='Stroke',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='DX' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='b')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'b','Brain Dysfunction (TBI/ABI)',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='b')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='b',
				--[CHOICE_TEXT]='Brain Dysfunction (TBI/ABI)',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='DX' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='c')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'c','Hearing Loss',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='c')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='c',
				--[CHOICE_TEXT]='Hearing Loss',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='DX' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='d')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'d','Visual Impairment',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='d')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='d',
				--[CHOICE_TEXT]='Visual Impairment',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='DX' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='e')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'e','SCI',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='e')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='e',
				--[CHOICE_TEXT]='SCI',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='DX' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='f')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'f','Amputation',6,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='f')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='f',
				--[CHOICE_TEXT]='Amputation',
				--[CHOICE_SORT_ORDER]=6,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='DX' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='g')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'g','Pain',7,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='g')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='g',
				--[CHOICE_TEXT]='Pain',
				--[CHOICE_SORT_ORDER]=7,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='DX' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='h')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'h','Orthopedic Conditions',8,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='h')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='h',
				--[CHOICE_TEXT]='Orthopedic Conditions',
				--[CHOICE_SORT_ORDER]=8,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='DX' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='i')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'i','Cardio-pulmonary',9,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='i')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='i',
				--[CHOICE_TEXT]='Cardio-pulmonary',
				--[CHOICE_SORT_ORDER]=9,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='DX' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='j')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'j','Multiple Trauma',10,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='j')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='j',
				--[CHOICE_TEXT]='Multiple Trauma',
				--[CHOICE_SORT_ORDER]=10,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='DX' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='k')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'k','Debility',11,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='k')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='k',
				--[CHOICE_TEXT]='Debility',
				--[CHOICE_SORT_ORDER]=11,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='DX' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='l')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'l','Other',12,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='l')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='l',
				--[CHOICE_TEXT]='Other',
				--[CHOICE_SORT_ORDER]=12,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Patient Status' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Inpatient',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Inpatient',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Patient Status' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Outpatient',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Outpatient',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Survey Date' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Survey Date')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Survey Date','Survey Date',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Survey Date')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Survey Date',
				--[CHOICE_TEXT]='Survey Date',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Total Score' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Total Score')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Total Score','Total Score',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Total Score')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Total Score',
				--[CHOICE_TEXT]='Total Score',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    select @sID=id from dbo.std_survey_type where code='Optimal Follow Up';
	Select @qID=id from dbo.std_question where Question_number='1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Working full-time outside of home',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Working full-time outside of home',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='10')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'10','Unemployed',10,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='10')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='10',
				--[CHOICE_TEXT]='Unemployed',
				--[CHOICE_SORT_ORDER]=10,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Working part-time outside of home',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Working part-time outside of home',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Working full-time from home',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Working full-time from home',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','Working part-time from home',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='Working part-time from home',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5','Working with modification in job because of current illness/injury',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5',
				--[CHOICE_TEXT]='Working with modification in job because of current illness/injury',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='6')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'6','Not working because of current illness/ injury',6,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='6')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='6',
				--[CHOICE_TEXT]='Not working because of current illness/ injury',
				--[CHOICE_SORT_ORDER]=6,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='7')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'7','Homemaker',7,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='7')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='7',
				--[CHOICE_TEXT]='Homemaker',
				--[CHOICE_SORT_ORDER]=7,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='8')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'8','Student',8,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='8')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='8',
				--[CHOICE_TEXT]='Student',
				--[CHOICE_SORT_ORDER]=8,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'9','Retired',9,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='9',
				--[CHOICE_TEXT]='Retired',
				--[CHOICE_SORT_ORDER]=9,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Occupation')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Occupation','Occupation',11,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Occupation')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Occupation',
				--[CHOICE_TEXT]='Occupation',
				--[CHOICE_SORT_ORDER]=11,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='2' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Cane?',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Cane?',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='2' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Walker, rolling walker, or rollator?',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Walker, rolling walker, or rollator?',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='2' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Manual wheelchair?',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Manual wheelchair?',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='2' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','Motorized wheelchair?',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='Motorized wheelchair?',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='2' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5','Other',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5',
				--[CHOICE_TEXT]='Other',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='3' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Alone',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Alone',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='3' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Spouse/significant other',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Spouse/significant other',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='3' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Child/children',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Child/children',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='3' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','Other relative(s)',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='Other relative(s)',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='3' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5','Group setting',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5',
				--[CHOICE_TEXT]='Group setting',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='3' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='6')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'6','Personal care attendant',6,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='6')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='6',
				--[CHOICE_TEXT]='Personal care attendant',
				--[CHOICE_SORT_ORDER]=6,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='3' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='7')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'7','Other:',7,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='7')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='7',
				--[CHOICE_TEXT]='Other:',
				--[CHOICE_SORT_ORDER]=7,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='4' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Private home',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Private home',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='4' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Private apartment',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Private apartment',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='4' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Rented room',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Rented room',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='4' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','Board and care/assisted living/group home',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='Board and care/assisted living/group home',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='4' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5','Homeless (with or without shelter)',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5',
				--[CHOICE_TEXT]='Homeless (with or without shelter)',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='4' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='6')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'6','Long-term care facility (nursing home)',6,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='6')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='6',
				--[CHOICE_TEXT]='Long-term care facility (nursing home)',
				--[CHOICE_SORT_ORDER]=6,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='4' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='7')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'7','Hospice',7,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='7')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='7',
				--[CHOICE_TEXT]='Hospice',
				--[CHOICE_SORT_ORDER]=7,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='4' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='8')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'8','Other',8,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='8')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='8',
				--[CHOICE_TEXT]='Other',
				--[CHOICE_SORT_ORDER]=8,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='DX' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='a')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'a','Stroke',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='a')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='a',
				--[CHOICE_TEXT]='Stroke',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='DX' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='b')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'b','Brain Dysfunction (TBI/ABI)',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='b')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='b',
				--[CHOICE_TEXT]='Brain Dysfunction (TBI/ABI)',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='DX' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='c')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'c','Hearing Loss',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='c')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='c',
				--[CHOICE_TEXT]='Hearing Loss',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='DX' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='d')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'d','Visual Impairment',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='d')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='d',
				--[CHOICE_TEXT]='Visual Impairment',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='DX' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='e')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'e','SCI',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='e')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='e',
				--[CHOICE_TEXT]='SCI',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='DX' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='f')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'f','Amputation',6,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='f')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='f',
				--[CHOICE_TEXT]='Amputation',
				--[CHOICE_SORT_ORDER]=6,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='DX' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='g')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'g','Pain',7,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='g')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='g',
				--[CHOICE_TEXT]='Pain',
				--[CHOICE_SORT_ORDER]=7,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='DX' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='h')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'h','Orthopedic Conditions',8,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='h')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='h',
				--[CHOICE_TEXT]='Orthopedic Conditions',
				--[CHOICE_SORT_ORDER]=8,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='DX' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='i')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'i','Cardio-pulmonary',9,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='i')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='i',
				--[CHOICE_TEXT]='Cardio-pulmonary',
				--[CHOICE_SORT_ORDER]=9,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='DX' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='j')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'j','Multiple Trauma',10,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='j')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='j',
				--[CHOICE_TEXT]='Multiple Trauma',
				--[CHOICE_SORT_ORDER]=10,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='DX' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='k')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'k','Debility',11,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='k')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='k',
				--[CHOICE_TEXT]='Debility',
				--[CHOICE_SORT_ORDER]=11,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='DX' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='l')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'l','Other',12,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='l')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='l',
				--[CHOICE_TEXT]='Other',
				--[CHOICE_SORT_ORDER]=12,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Able to do without any difficulty',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Able to do without any difficulty',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Able to do with little difficulty',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Able to do with little difficulty',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Able to do with moderate difficulty',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Able to do with moderate difficulty',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','Able to do with much difficulty',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='Able to do with much difficulty',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5','Unable to do',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5',
				--[CHOICE_TEXT]='Unable to do',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-1' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'9','Not applicable',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='9',
				--[CHOICE_TEXT]='Not applicable',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-10' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Able to do without any difficulty',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Able to do without any difficulty',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-10' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Able to do with little difficulty',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Able to do with little difficulty',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-10' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Able to do with moderate difficulty',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Able to do with moderate difficulty',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-10' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','Able to do with much difficulty',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='Able to do with much difficulty',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-10' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5','Unable to do',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5',
				--[CHOICE_TEXT]='Unable to do',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-10' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'9','Not applicable',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='9',
				--[CHOICE_TEXT]='Not applicable',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-11' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Able to do without any difficulty',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Able to do without any difficulty',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-11' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Able to do with little difficulty',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Able to do with little difficulty',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-11' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Able to do with moderate difficulty',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Able to do with moderate difficulty',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-11' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','Able to do with much difficulty',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='Able to do with much difficulty',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-11' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5','Unable to do',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5',
				--[CHOICE_TEXT]='Unable to do',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-11' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'9','Not applicable',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='9',
				--[CHOICE_TEXT]='Not applicable',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-12' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Able to do without any difficulty',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Able to do without any difficulty',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-12' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Able to do with little difficulty',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Able to do with little difficulty',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-12' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Able to do with moderate difficulty',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Able to do with moderate difficulty',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-12' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','Able to do with much difficulty',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='Able to do with much difficulty',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-12' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5','Unable to do',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5',
				--[CHOICE_TEXT]='Unable to do',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-12' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'9','Not applicable',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='9',
				--[CHOICE_TEXT]='Not applicable',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-13' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Able to do without any difficulty',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Able to do without any difficulty',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-13' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Able to do with little difficulty',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Able to do with little difficulty',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-13' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Able to do with moderate difficulty',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Able to do with moderate difficulty',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-13' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','Able to do with much difficulty',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='Able to do with much difficulty',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-13' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5','Unable to do',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5',
				--[CHOICE_TEXT]='Unable to do',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-13' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'9','Not applicable',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='9',
				--[CHOICE_TEXT]='Not applicable',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-14' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Able to do without any difficulty',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Able to do without any difficulty',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-14' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Able to do with little difficulty',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Able to do with little difficulty',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-14' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Able to do with moderate difficulty',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Able to do with moderate difficulty',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-14' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','Able to do with much difficulty',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='Able to do with much difficulty',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-14' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5','Unable to do',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5',
				--[CHOICE_TEXT]='Unable to do',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-14' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'9','Not applicable',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='9',
				--[CHOICE_TEXT]='Not applicable',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-15' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Able to do without any difficulty',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Able to do without any difficulty',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-15' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Able to do with little difficulty',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Able to do with little difficulty',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-15' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Able to do with moderate difficulty',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Able to do with moderate difficulty',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-15' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','Able to do with much difficulty',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='Able to do with much difficulty',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-15' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5','Unable to do',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5',
				--[CHOICE_TEXT]='Unable to do',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-15' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'9','Not applicable',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='9',
				--[CHOICE_TEXT]='Not applicable',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-16' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Able to do without any difficulty',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Able to do without any difficulty',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-16' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Able to do with little difficulty',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Able to do with little difficulty',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-16' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Able to do with moderate difficulty',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Able to do with moderate difficulty',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-16' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','Able to do with much difficulty',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='Able to do with much difficulty',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-16' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5','Unable to do',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5',
				--[CHOICE_TEXT]='Unable to do',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-16' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'9','Not applicable',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='9',
				--[CHOICE_TEXT]='Not applicable',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-17' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Able to do without any difficulty',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Able to do without any difficulty',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-17' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Able to do with little difficulty',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Able to do with little difficulty',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-17' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Able to do with moderate difficulty',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Able to do with moderate difficulty',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-17' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','Able to do with much difficulty',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='Able to do with much difficulty',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-17' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5','Unable to do',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5',
				--[CHOICE_TEXT]='Unable to do',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-17' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'9','Not applicable',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='9',
				--[CHOICE_TEXT]='Not applicable',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-18' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Able to do without any difficulty',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Able to do without any difficulty',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-18' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Able to do with little difficulty',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Able to do with little difficulty',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-18' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Able to do with moderate difficulty',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Able to do with moderate difficulty',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-18' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','Able to do with much difficulty',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='Able to do with much difficulty',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-18' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5','Unable to do',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5',
				--[CHOICE_TEXT]='Unable to do',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-18' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'9','Not applicable',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='9',
				--[CHOICE_TEXT]='Not applicable',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-19' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Able to do without any difficulty',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Able to do without any difficulty',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-19' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Able to do with little difficulty',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Able to do with little difficulty',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-19' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Able to do with moderate difficulty',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Able to do with moderate difficulty',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-19' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','Able to do with much difficulty',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='Able to do with much difficulty',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-19' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5','Unable to do',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5',
				--[CHOICE_TEXT]='Unable to do',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-19' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'9','Not applicable',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='9',
				--[CHOICE_TEXT]='Not applicable',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-2' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Able to do without any difficulty',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Able to do without any difficulty',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-2' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Able to do with little difficulty',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Able to do with little difficulty',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-2' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Able to do with moderate difficulty',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Able to do with moderate difficulty',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-2' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','Able to do with much difficulty',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='Able to do with much difficulty',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-2' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5','Unable to do',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5',
				--[CHOICE_TEXT]='Unable to do',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-2' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'9','Not applicable',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='9',
				--[CHOICE_TEXT]='Not applicable',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-20' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Able to do without any difficulty',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Able to do without any difficulty',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-20' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Able to do with little difficulty',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Able to do with little difficulty',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-20' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Able to do with moderate difficulty',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Able to do with moderate difficulty',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-20' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','Able to do with much difficulty',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='Able to do with much difficulty',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-20' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5','Unable to do',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5',
				--[CHOICE_TEXT]='Unable to do',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-20' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'9','Not applicable',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='9',
				--[CHOICE_TEXT]='Not applicable',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-21' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Able to do without any difficulty',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Able to do without any difficulty',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-21' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Able to do with little difficulty',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Able to do with little difficulty',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-21' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Able to do with moderate difficulty',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Able to do with moderate difficulty',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-21' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','Able to do with much difficulty',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='Able to do with much difficulty',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-21' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5','Unable to do',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5',
				--[CHOICE_TEXT]='Unable to do',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-21' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'9','Not applicable',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='9',
				--[CHOICE_TEXT]='Not applicable',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-22' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Able to do without any difficulty',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Able to do without any difficulty',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-22' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Able to do with little difficulty',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Able to do with little difficulty',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-22' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Able to do with moderate difficulty',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Able to do with moderate difficulty',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-22' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','Able to do with much difficulty',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='Able to do with much difficulty',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-22' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5','Unable to do',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5',
				--[CHOICE_TEXT]='Unable to do',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-22' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'9','Not applicable',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='9',
				--[CHOICE_TEXT]='Not applicable',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Able to do without any difficulty',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Able to do without any difficulty',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Able to do with little difficulty',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Able to do with little difficulty',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Able to do with moderate difficulty',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Able to do with moderate difficulty',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','Able to do with much difficulty',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='Able to do with much difficulty',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5','Unable to do',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5',
				--[CHOICE_TEXT]='Unable to do',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'9','Not applicable',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='9',
				--[CHOICE_TEXT]='Not applicable',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23a' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Balancing')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Balancing','Balancing',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Balancing')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Balancing',
				--[CHOICE_TEXT]='Balancing',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23a' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Bending/stooping')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Bending/stooping','Bending/stooping',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Bending/stooping')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Bending/stooping',
				--[CHOICE_TEXT]='Bending/stooping',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23a' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Carrying')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Carrying','Carrying',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Carrying')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Carrying',
				--[CHOICE_TEXT]='Carrying',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23a' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Climbing stairs')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Climbing stairs','Climbing stairs',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Climbing stairs')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Climbing stairs',
				--[CHOICE_TEXT]='Climbing stairs',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23a' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Grasping')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Grasping','Grasping',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Grasping')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Grasping',
				--[CHOICE_TEXT]='Grasping',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23a' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Hopping')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Hopping','Hopping',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Hopping')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Hopping',
				--[CHOICE_TEXT]='Hopping',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23a' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Jumping')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Jumping','Jumping',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Jumping')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Jumping',
				--[CHOICE_TEXT]='Jumping',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23a' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Kneeling')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Kneeling','Kneeling',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Kneeling')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Kneeling',
				--[CHOICE_TEXT]='Kneeling',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23a' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Lifting')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Lifting','Lifting',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Lifting')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Lifting',
				--[CHOICE_TEXT]='Lifting',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23a' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Lying flat')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Lying flat','Lying flat',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Lying flat')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Lying flat',
				--[CHOICE_TEXT]='Lying flat',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23a' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Moving-lying to sitting')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Moving-lying to sitting','Moving-lying to sitting',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Moving-lying to sitting')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Moving-lying to sitting',
				--[CHOICE_TEXT]='Moving-lying to sitting',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23a' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Pulling')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Pulling','Pulling',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Pulling')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Pulling',
				--[CHOICE_TEXT]='Pulling',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23a' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Pushing')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Pushing','Pushing',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Pushing')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Pushing',
				--[CHOICE_TEXT]='Pushing',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23a' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Reaching')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Reaching','Reaching',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Reaching')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Reaching',
				--[CHOICE_TEXT]='Reaching',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23a' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Rolling over')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Rolling over','Rolling over',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Rolling over')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Rolling over',
				--[CHOICE_TEXT]='Rolling over',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23a' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Running')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Running','Running',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Running')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Running',
				--[CHOICE_TEXT]='Running',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23a' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Sitting')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Sitting','Sitting',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Sitting')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Sitting',
				--[CHOICE_TEXT]='Sitting',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23a' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Squatting')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Squatting','Squatting',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Squatting')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Squatting',
				--[CHOICE_TEXT]='Squatting',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23a' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Standing')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Standing','Standing',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Standing')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Standing',
				--[CHOICE_TEXT]='Standing',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23a' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Walking-long distance')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Walking-long distance','Walking-long distance',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Walking-long distance')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Walking-long distance',
				--[CHOICE_TEXT]='Walking-long distance',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23a' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Walking-outdoors')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Walking-outdoors','Walking-outdoors',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Walking-outdoors')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Walking-outdoors',
				--[CHOICE_TEXT]='Walking-outdoors',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23a' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Walking-short distance')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Walking-short distance','Walking-short distance',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Walking-short distance')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Walking-short distance',
				--[CHOICE_TEXT]='Walking-short distance',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23b' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Balancing')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Balancing','Balancing',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Balancing')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Balancing',
				--[CHOICE_TEXT]='Balancing',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23b' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Bending/stooping')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Bending/stooping','Bending/stooping',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Bending/stooping')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Bending/stooping',
				--[CHOICE_TEXT]='Bending/stooping',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23b' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Carrying')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Carrying','Carrying',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Carrying')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Carrying',
				--[CHOICE_TEXT]='Carrying',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23b' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Climbing stairs')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Climbing stairs','Climbing stairs',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Climbing stairs')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Climbing stairs',
				--[CHOICE_TEXT]='Climbing stairs',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23b' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Grasping')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Grasping','Grasping',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Grasping')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Grasping',
				--[CHOICE_TEXT]='Grasping',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23b' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Hopping')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Hopping','Hopping',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Hopping')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Hopping',
				--[CHOICE_TEXT]='Hopping',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23b' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Jumping')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Jumping','Jumping',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Jumping')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Jumping',
				--[CHOICE_TEXT]='Jumping',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23b' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Kneeling')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Kneeling','Kneeling',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Kneeling')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Kneeling',
				--[CHOICE_TEXT]='Kneeling',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23b' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Lifting')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Lifting','Lifting',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Lifting')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Lifting',
				--[CHOICE_TEXT]='Lifting',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23b' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Lying flat')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Lying flat','Lying flat',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Lying flat')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Lying flat',
				--[CHOICE_TEXT]='Lying flat',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23b' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Moving-lying to sitting')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Moving-lying to sitting','Moving-lying to sitting',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Moving-lying to sitting')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Moving-lying to sitting',
				--[CHOICE_TEXT]='Moving-lying to sitting',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23b' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Pulling')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Pulling','Pulling',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Pulling')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Pulling',
				--[CHOICE_TEXT]='Pulling',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23b' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Pushing')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Pushing','Pushing',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Pushing')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Pushing',
				--[CHOICE_TEXT]='Pushing',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23b' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Reaching')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Reaching','Reaching',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Reaching')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Reaching',
				--[CHOICE_TEXT]='Reaching',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23b' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Rolling over')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Rolling over','Rolling over',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Rolling over')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Rolling over',
				--[CHOICE_TEXT]='Rolling over',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23b' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Running')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Running','Running',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Running')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Running',
				--[CHOICE_TEXT]='Running',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23b' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Sitting')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Sitting','Sitting',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Sitting')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Sitting',
				--[CHOICE_TEXT]='Sitting',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23b' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Squatting')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Squatting','Squatting',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Squatting')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Squatting',
				--[CHOICE_TEXT]='Squatting',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23b' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Standing')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Standing','Standing',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Standing')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Standing',
				--[CHOICE_TEXT]='Standing',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23b' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Walking-long distance')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Walking-long distance','Walking-long distance',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Walking-long distance')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Walking-long distance',
				--[CHOICE_TEXT]='Walking-long distance',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23b' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Walking-outdoors')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Walking-outdoors','Walking-outdoors',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Walking-outdoors')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Walking-outdoors',
				--[CHOICE_TEXT]='Walking-outdoors',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23b' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Walking-short distance')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Walking-short distance','Walking-short distance',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Walking-short distance')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Walking-short distance',
				--[CHOICE_TEXT]='Walking-short distance',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23c' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Balancing')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Balancing','Balancing',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Balancing')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Balancing',
				--[CHOICE_TEXT]='Balancing',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23c' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Bending/stooping')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Bending/stooping','Bending/stooping',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Bending/stooping')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Bending/stooping',
				--[CHOICE_TEXT]='Bending/stooping',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23c' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Carrying')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Carrying','Carrying',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Carrying')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Carrying',
				--[CHOICE_TEXT]='Carrying',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23c' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Climbing stairs')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Climbing stairs','Climbing stairs',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Climbing stairs')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Climbing stairs',
				--[CHOICE_TEXT]='Climbing stairs',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23c' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Grasping')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Grasping','Grasping',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Grasping')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Grasping',
				--[CHOICE_TEXT]='Grasping',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23c' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Hopping')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Hopping','Hopping',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Hopping')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Hopping',
				--[CHOICE_TEXT]='Hopping',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23c' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Jumping')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Jumping','Jumping',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Jumping')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Jumping',
				--[CHOICE_TEXT]='Jumping',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23c' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Kneeling')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Kneeling','Kneeling',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Kneeling')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Kneeling',
				--[CHOICE_TEXT]='Kneeling',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23c' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Lifting')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Lifting','Lifting',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Lifting')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Lifting',
				--[CHOICE_TEXT]='Lifting',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23c' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Lying flat')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Lying flat','Lying flat',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Lying flat')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Lying flat',
				--[CHOICE_TEXT]='Lying flat',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23c' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Moving-lying to sitting')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Moving-lying to sitting','Moving-lying to sitting',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Moving-lying to sitting')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Moving-lying to sitting',
				--[CHOICE_TEXT]='Moving-lying to sitting',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23c' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Pulling')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Pulling','Pulling',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Pulling')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Pulling',
				--[CHOICE_TEXT]='Pulling',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23c' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Pushing')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Pushing','Pushing',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Pushing')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Pushing',
				--[CHOICE_TEXT]='Pushing',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23c' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Reaching')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Reaching','Reaching',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Reaching')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Reaching',
				--[CHOICE_TEXT]='Reaching',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23c' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Rolling over')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Rolling over','Rolling over',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Rolling over')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Rolling over',
				--[CHOICE_TEXT]='Rolling over',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23c' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Running')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Running','Running',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Running')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Running',
				--[CHOICE_TEXT]='Running',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23c' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Sitting')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Sitting','Sitting',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Sitting')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Sitting',
				--[CHOICE_TEXT]='Sitting',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23c' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Squatting')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Squatting','Squatting',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Squatting')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Squatting',
				--[CHOICE_TEXT]='Squatting',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23c' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Standing')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Standing','Standing',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Standing')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Standing',
				--[CHOICE_TEXT]='Standing',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23c' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Walking-long distance')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Walking-long distance','Walking-long distance',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Walking-long distance')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Walking-long distance',
				--[CHOICE_TEXT]='Walking-long distance',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23c' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Walking-outdoors')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Walking-outdoors','Walking-outdoors',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Walking-outdoors')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Walking-outdoors',
				--[CHOICE_TEXT]='Walking-outdoors',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-23c' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Walking-short distance')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Walking-short distance','Walking-short distance',0,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Walking-short distance')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Walking-short distance',
				--[CHOICE_TEXT]='Walking-short distance',
				--[CHOICE_SORT_ORDER]=0,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-3' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Able to do without any difficulty',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Able to do without any difficulty',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-3' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Able to do with little difficulty',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Able to do with little difficulty',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-3' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Able to do with moderate difficulty',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Able to do with moderate difficulty',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-3' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','Able to do with much difficulty',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='Able to do with much difficulty',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-3' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5','Unable to do',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5',
				--[CHOICE_TEXT]='Unable to do',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-3' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'9','Not applicable',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='9',
				--[CHOICE_TEXT]='Not applicable',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-4' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Able to do without any difficulty',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Able to do without any difficulty',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-4' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Able to do with little difficulty',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Able to do with little difficulty',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-4' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Able to do with moderate difficulty',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Able to do with moderate difficulty',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-4' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','Able to do with much difficulty',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='Able to do with much difficulty',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-4' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5','Unable to do',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5',
				--[CHOICE_TEXT]='Unable to do',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-4' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'9','Not applicable',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='9',
				--[CHOICE_TEXT]='Not applicable',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-5' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Able to do without any difficulty',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Able to do without any difficulty',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-5' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Able to do with little difficulty',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Able to do with little difficulty',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-5' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Able to do with moderate difficulty',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Able to do with moderate difficulty',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-5' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','Able to do with much difficulty',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='Able to do with much difficulty',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-5' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5','Unable to do',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5',
				--[CHOICE_TEXT]='Unable to do',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-5' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'9','Not applicable',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='9',
				--[CHOICE_TEXT]='Not applicable',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-6' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Able to do without any difficulty',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Able to do without any difficulty',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-6' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Able to do with little difficulty',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Able to do with little difficulty',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-6' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Able to do with moderate difficulty',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Able to do with moderate difficulty',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-6' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','Able to do with much difficulty',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='Able to do with much difficulty',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-6' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5','Unable to do',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5',
				--[CHOICE_TEXT]='Unable to do',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-6' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'9','Not applicable',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='9',
				--[CHOICE_TEXT]='Not applicable',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-7' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Able to do without any difficulty',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Able to do without any difficulty',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-7' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Able to do with little difficulty',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Able to do with little difficulty',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-7' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Able to do with moderate difficulty',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Able to do with moderate difficulty',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-7' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','Able to do with much difficulty',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='Able to do with much difficulty',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-7' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5','Unable to do',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5',
				--[CHOICE_TEXT]='Unable to do',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-7' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'9','Not applicable',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='9',
				--[CHOICE_TEXT]='Not applicable',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-8' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Able to do without any difficulty',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Able to do without any difficulty',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-8' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Able to do with little difficulty',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Able to do with little difficulty',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-8' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Able to do with moderate difficulty',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Able to do with moderate difficulty',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-8' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','Able to do with much difficulty',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='Able to do with much difficulty',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-8' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5','Unable to do',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5',
				--[CHOICE_TEXT]='Unable to do',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-8' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'9','Not applicable',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='9',
				--[CHOICE_TEXT]='Not applicable',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-9' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Able to do without any difficulty',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Able to do without any difficulty',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-9' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Able to do with little difficulty',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Able to do with little difficulty',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-9' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Able to do with moderate difficulty',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Able to do with moderate difficulty',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-9' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'4','Able to do with much difficulty',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='4')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='4',
				--[CHOICE_TEXT]='Able to do with much difficulty',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-9' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'5','Unable to do',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='5')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='5',
				--[CHOICE_TEXT]='Unable to do',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Follow Up Difficulty-9' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'9','Not applicable',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='9')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='9',
				--[CHOICE_TEXT]='Not applicable',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Survey Date' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Survey Date')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Survey Date','Survey Date',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Survey Date')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Survey Date',
				--[CHOICE_TEXT]='Survey Date',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Total Score' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Total Score')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Total Score','Total Score',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Total Score')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Total Score',
				--[CHOICE_TEXT]='Total Score',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end




    select @sID=id from dbo.std_survey_type where code='Rehab Follow Up';
	Select @qID=id from dbo.std_question where Question_number='Activity' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Worse',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Worse',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Activity' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','No Difference',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='No Difference',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Activity' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Better',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Better',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Date of Follow up' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Date of Follow up')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Date of Follow up','',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Date of Follow up')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Date of Follow up',
				--[CHOICE_TEXT]='',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Discharge Date' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Discharge Date')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Discharge Date','',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Discharge Date')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Discharge Date',
				--[CHOICE_TEXT]='',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='DX' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='a')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'a','Stroke',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='a')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='a',
				--[CHOICE_TEXT]='Stroke',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='DX' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='b')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'b','Brain Dysfunction (TBI/ABI)',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='b')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='b',
				--[CHOICE_TEXT]='Brain Dysfunction (TBI/ABI)',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='DX' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='c')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'c','Hearing Loss',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='c')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='c',
				--[CHOICE_TEXT]='Hearing Loss',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='DX' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='d')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'d','Visual Impairment',4,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='d')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='d',
				--[CHOICE_TEXT]='Visual Impairment',
				--[CHOICE_SORT_ORDER]=4,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='DX' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='e')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'e','SCI',5,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='e')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='e',
				--[CHOICE_TEXT]='SCI',
				--[CHOICE_SORT_ORDER]=5,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='DX' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='f')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'f','Amputation',6,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='f')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='f',
				--[CHOICE_TEXT]='Amputation',
				--[CHOICE_SORT_ORDER]=6,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='DX' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='g')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'g','Pain',7,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='g')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='g',
				--[CHOICE_TEXT]='Pain',
				--[CHOICE_SORT_ORDER]=7,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='DX' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='h')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'h','Orthopedic Conditions',8,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='h')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='h',
				--[CHOICE_TEXT]='Orthopedic Conditions',
				--[CHOICE_SORT_ORDER]=8,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='DX' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='i')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'i','Cardio-pulmonary',9,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='i')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='i',
				--[CHOICE_TEXT]='Cardio-pulmonary',
				--[CHOICE_SORT_ORDER]=9,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='DX' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='j')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'j','Multiple Trauma',10,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='j')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='j',
				--[CHOICE_TEXT]='Multiple Trauma',
				--[CHOICE_SORT_ORDER]=10,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='DX' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='k')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'k','Debility',11,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='k')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='k',
				--[CHOICE_TEXT]='Debility',
				--[CHOICE_SORT_ORDER]=11,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='DX' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='l')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'l','Other',12,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='l')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='l',
				--[CHOICE_TEXT]='Other',
				--[CHOICE_SORT_ORDER]=12,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Environment' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Worse',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Worse',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Environment' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','No Difference',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='No Difference',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Environment' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Better',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Better',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Health Status' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Worse',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Worse',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Health Status' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','No Difference',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='No Difference',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Health Status' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Better',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Better',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Participation' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Worse',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Worse',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Participation' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','No Difference',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='No Difference',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Participation' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Better',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Better',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Quality of Life' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Worse',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Worse',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Quality of Life' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','No Difference',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='No Difference',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Quality of Life' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'3','Better',3,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='3')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='3',
				--[CHOICE_TEXT]='Better',
				--[CHOICE_SORT_ORDER]=3,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Rehabilitation Setting' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Inpatient',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Inpatient',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Rehabilitation Setting' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Outpatient',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Outpatient',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Respondent' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'1','Patient',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='1')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='1',
				--[CHOICE_TEXT]='Patient',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Respondent' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'2','Caregiver',2,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='2')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='2',
				--[CHOICE_TEXT]='Caregiver',
				--[CHOICE_SORT_ORDER]=2,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end





	Select @qID=id from dbo.std_question where Question_number='Total Score' and std_survey_type_id=@sID;

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Total Score')
		begin
			set @id=@id+1;		              
			INSERT INTO [dbo].[STD_QUESTION_CHOICE]
					   ([STD_QUESTION_CHOICE_ID],[STD_QUESTION_ID],[CHOICE_NAME],[CHOICE_TEXT],[CHOICE_SORT_ORDER],[INACTIVE_FLAG],[CREATEDBY],[UPDATEDBY],[CREATED],[UPDATED])		 
					   VALUES
					   (@id, @qID,'Total Score','Total Score',1,0,'TBIe','TBIE',getdate(),getdate());
		end

		if not exists(Select [STD_QUESTION_CHOICE_ID] from dbo.std_question_choice where std_question_id=@qid and Choice_name='Total Score')
		begin
			--update [dbo].[STD_QUESTION_CHOICE] Set
				--[CHOICE_NAME]='Total Score',
				--[CHOICE_TEXT]='Total Score',
				--[CHOICE_SORT_ORDER]=1,
				--[UPDATEDBY]='TBIe',
				--[UPDATED]=getdate();
		end

