function show_textbox(val)
{
	if(document.getElementById('other_descript').style.display =='none')
	{  
		document.getElementById('other_value').value = '';
		document.getElementById('other_descript').style.display='block';
	}
	else
	{ 
		document.getElementById('other_value').value = ''; 
		document.getElementById('other_descript').style.display='none';
	}
}

function fill_value(var1)
{
	if(document.getElementById('div_localarea').style.display =='none')
	{  
		document.getElementById('field_local').value = '';
		document.getElementById('div_localarea').style.display='block';
	}
	else
	{ 
		document.getElementById('field_local').value = ''; 
		document.getElementById('div_localarea').style.display='none';
	}
}
function Check_mobile() {
	if(document.getElementById('Primary_Number').value == 'Mobile')
	{
		if(document.getElementById('Mobile_Number').value=='')
		{
			alert("Please enter your Mobile number");
			document.getElementById('Mobile_Number').focus();
			return false;
		}
	}
}
