doSelectRS 

http://www.symfony-project.org/forum/index.php/m/9234/

$c=new Criteria();
$c->add(DepartementPeer::ID_REGION,'54');
$c->clearSelectColumns();
$c->addSelectColumn(DepartementPeer::ID_DEPARTEMENT);
$c->addSelectColumn(DepartementPeer::DEP_NOM);
$rs = DepartementPeer::doSelectRS($c);
$liste = "";
while ($rs->next()) {
sfContext::getInstance()->getLogger()->info("boucle");
$liste =$liste."<option value=\"".$rs->getString(1)."\">".$rs->getString(2)."</option >";
}

doSelectRS 

why do you manually build the option list? You are blending the model layer (the database) and the view layer (the html code).

I advise you to read and use the form helpers of symfony, especially the options_for_select function:

http://www.symfony-project.org/content/book/page/templating_form_helpers.html

Other piece of advice: follow the MVC guidelines. It doesn't really make sense to use symfony outside the MVC paradigm…