$(function(){
	$("#lstCompanyName").change(function(){
		if(this.value=="Other") {
			$(this).next("input[name='otherCompany']").removeAttr('disabled').show();
		} else {
			$(this).next("input[name='otherCompany']").attr('disabled', 'disabled').hide();
		}
	});
});
