you should pass the value using "fields_value" as below
$helper->tpl_vars = array(
'uri' => $this->getPathUri(),
'fields_value' => $this->getConfigFieldsValues(),
'languages' => $this->context->controller->getLanguages(),
'id_language' => $this->context->language->id
);
here, getConfigFieldsValues should return an associative array with field name, value pair
function getConfigFieldsValues()
{
return array(
'selectProductsField' => 597
);
}