Ya lo solucione GRACIAS
<html>
<head>
<title>Consulta a la base de datos</title>
</head>
<body>
<div align="center">
<select style='background:#7baec9;
color:black' name='' maxlength='20'>
<?php
$con=mysql_connect("localhost", "usuario_mysql", "contraseña_mysql") or die ("No se pudo conectar: " . mysql_error());
$sql="SHOW DATABASES";
$res=mysql_query($sql,$con);
while($reg=mysql_fetch_array($res)){
$bd = mysql_select_db ($reg[0],$con) or die ("ERROR AL SELECCIONAR BASE DE DATOS: ".mysql_error());
$sql="SHOW TABLES LIKE 'clientes'";
$result=mysql_query($sql,$con);
if ($registro=mysql_fetch_array($result)){
echo "<option value='".$reg[0]."'>".$reg[0]."</option>";}
}
?>
</select>
</div>
</body>
</html>