Warning, do this if you only understand what it does.
To remove only the MBR ( boot loader)
dd if=/dev/zero of=/dev/sda bs=446 count=1
To remove your MBR & partition table
dd if=/dev/zero of=/dev/sda bs=512 count=1
The sda is the hard that you want to erase.