
$(document).ready(function() {

$("#other_title").hide();
$("#ddTitle").change(showOtherTitle);

});

function showOtherTitle()
{
if (this.value == "Other")
$("#other_title").show();
else
$("#other_title").hide();
}
