$( function() {

	//to change
	$('#type').change( function() {
		if ('posts' == $(this).val()) {
			$('#author').attr('disabled', true);
		} else {
			$('#author').attr('disabled', false);
		}
	});
	
	$('#type').change();

});