Alguna idea de cual es el problema?. Saludos.
Código PHP:
$htmlText .="\n".'var eleSelMarcas = document.getElementById(\'marca\');';
$select = '';
if (count($marca) > 0) {
$htmlText .="\n".'eleSelMarcas.options[0] = new Option("-- Selecciona --","");';
}
else {
$htmlText .="\n".'eleSelMarcas.options[0] = new Option("","");';
}
$InxOption = 1;
foreach ($marca as $rowmarca){
$htmlText .="\n".'eleSelMarcas.options['.$InxOption.'] = new Option("'.PasarStringToOctal($rowmarca['marc_descripcion']).'","'.$rowmarca['marc_id'].'");';
if ($rowmarca['marc_id'] == $actual){
$htmlText .="\n".'eleSelMarcas.options['.$InxOption.'].selected = true;';
}
$InxOption++;
}
// $htmlText .="\n".'AddOptions(\'municipio\',municipios,'.$datos.');';
echo($htmlText);