function showOther_txt(){

	var otherTxt = document.getElementById('Other_txt');
	
	//check to see if its visible
	if(otherTxt.style.display == 'none' || otherTxt.style.display == ''){
		otherTxt.style.display = 'block';
	}
	else{
		otherTxt.style.display = 'none';
	}
	
	return false;
}
