//Two methods to set the disabled attribute
$('# areaSelect').attr("disabled",true);
$('#areaSelect').attr("disabled","disabled");
//Three methods to remove the disabled attribute
$('#areaSelect').attr("disabled",false);
$('#areaSelect').removeAttr("disabled");
$('#areaSelect').attr ("disabled","");