According to your link, AutoCad 2011 doesn't modify the MBR, but instead modifies the 2K bytes that follow it (which are usually unused, except by GRUB) therefore you need to reinstall Grub rather than restore the MBR. In any case, since it is an important question I will address what you actually asked - restoring MBR.
By Far the Easiest and quickest way to backup/restore the MBR is to use a linux live-cd and dd.
Simply boot into the livecd and perform:
dd if=/dev/sda of=MBR.bak bs=512 count=1
restore using the same command but with flipped of and if
dd if=MBR.bak of=/dev/sda
Make sure that /dev/sda refers to your primary hard drive, there is no need to specify blocksize and count since MBR.bak is 512 bytes already - NOTE THAT THIS WILL OVERWRITE YOUR PARTITION TABLE - avoid doing so by selecting bs=446 count=1 on the restore (last 66 bytes of the MBR is the table + signature)
To backup and restore the part that AutoCad overwrite replace count with 5 (to cover the first 512 and the 2k following it). Assuming of course that you did this prior to installing AutoCad. Although as Cody pointed out - any piece of software PARTICULARLY A TRIAL VERSION that modifies your hardisk on such a low level should be removed immediately