After a little bit tinkering, I've found an easier way, which works without replacing the Windows Bootloader completely.
From "EasyBCD 2.3" --> "Add new entry" --> "Neogrub" --> install
This creates a "NST" folder in your boot partition with a file, called "menu.lst", inside.
Just paste your grub configuration into this "menu.lst" and add:
root (hd0,1)
(hd0,1)has to match your Android partition (in my case second partition on the first hdd)Reboot and select "Neogrub Bootloader".
# NeoSmart NeoGrub Bootloader Configuration File
#
# This is the NeoGrub configuration file, and should be located at C:\NST\menu.lst
# Please see the EasyBCD Documentation for information on how to create/modify entries:
# http://neosmart.net/wiki/display/EBCD/
default=0
timeout=2
title Android-x86 14.1-rc1
root (hd0,1)
kernel /cm-x86-14.1-rc1/kernel quiet root=/dev/ram0 androidboot.selinux=permissive vmalloc=192M buildvariant=userdebug SRC=/cm-x86-14.1-rc1
initrd /cm-x86-14.1-rc1/initrd.img
title Android-x86 14.1-rc1 - EXTERNER MONITOR
root (hd0,1)
kernel /cm-x86-14.1-rc1/kernel quiet root=/dev/ram0 androidboot.selinux=permissive vmalloc=192M buildvariant=userdebug SRC=/cm-x86-14.1-rc1 video=LVDS-1:d
initrd /cm-x86-14.1-rc1/initrd.img
etc.....