$(document).ready(function () {

	$("select#home").change(function () {
		if (this.value == 'Other') {
			$("div#homeOther").attr('style','display:inline;')
			$("div#homeRow").addClass('other');
		} else {
			$("div#homeOther").attr('style','display:none;')
			$("div#homeRow").removeClass('other');
		}
	});

});