function intrestedInCheck()
{
	var val = $('interested_id').value; 
	if (val == 'OTHER'){
		$('interested_in_o').show();
	}else{
		$('interested_in_o').hide();
		$('interested_in_other_txt').value = '';
	}
}
