Try this to replace the existing keywords:
{source}<?php
$document->_metaTags['standard']['keywords'] = 'keyword1, keyword2, etc...';
?>{/source}
If you want to add keywords to the END existing keywords, just do:
{source}<?php
$document->_metaTags['standard']['keywords'] .= ', keyword1, keyword2, etc...';
?>{/source}
If you want to add keywords to the BEGINNING existing keywords, just do:
{source}<?php
$document->_metaTags['standard']['keywords'] = 'keyword1, keyword2, etc..., '.$document->_metaTags['standard']['keywords'];
?>{/source}