How to put in ease?

Ok I have this peice of code

onEnterFrame = function () {
	var speed = 1;
	var alpha = math.round(_root.man._alpha);
	_root.man._alpha -= speed;
	_root.box = math.round(_root.man._alpha);
	if (_root.man._alpha<0) {
		delete this.onEnterFrame;
	}
};

How can I make the man fade out with ease just by adding some more actionscript to that code?