PDF Save Option "color conversion id"

When saving and Illustrator CS5.1 document as a PDF I want to use the option “color conversion id:color conversion to dest”. I get an error message “Adobe Illustrator got an error: an Illustrator error occurred: 1346458189 (‘MRAP’)”
Do I have the syntax correct?

set pathToDesktop to (path to desktop as string)
tell application “Adobe Illustrator”
save document 1 in file (pathToDesktop & “Test.pdf”) as pdf with options {class:PDF save options, color conversion id:color conversion to dest, color destination id:color dest doc rgb, color profile id:none}
end tell

Could not figure out why the “color conversion id” option would not work.

I ended up building a preset and placing it on a server so if a script could import it if needed.

– Need to import a preset to use “color conversion id” option. Would not work in PDF Save Options.
– Presets are found at ~/Library/Application Support/Adobe/Adobe PDF/Settings/PDF Lab Preset.joboptions
set presetList to PDF presets – Get a list of pdf presets.
if “PDF Lab Preset” is not in presetList then – If the “PDF Lab Preset” is not available import it from server.
import PDF preset of document autoApprovalDoc ¬
from file ((pathToZippableItems_UD as string) & “Presets:PDF Lab Preset.joboptions”) ¬
with replacing preset
end if

		save document autoApprovalDoc in file (fullPathToJobFolder & prefixJobNumber & "-P.pdf") as pdf with options {class:PDF save options, PDF preset:"PDF Lab Preset", color profile id:include all profiles}