var role_desc = "";
var textObj = null;

$(document).ready
(
	function()
	{
			if(window.hideOtherBlock)
			{
				$("#other_block").hide();
			}
			if(window.hideOtherArea)
			{
				$("#other_area").hide();
			}
			
			
			$("#prospect").change(function () {
			
				var val = $("#prospect option:selected").val();
				if(val==4)
				{
					$("#other_block").show();
				}
				else
				{
					$("#other_block").hide();
				}
			});
			
			$("#county").change(function () {
			
				var val = $("#county option:selected").val();
				if(val=='other')
				{
					$("#other_area").show();
				}
				else
				{
					$("#other_area").hide();
				}
			});

	}//doc ready
	
);