index.php
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento sin título</title>
<?php
require("conexion.php");
$sqlproducto= "select * from tipo_producto";
$producto= @mysql_query($sqlproducto, $conexion);
?>
</head>
<body>
<form id="formacceso" name="form3" method="post" action="fguardar_proveedor.php">
<table width="508" border="0">
<tr>
<td><p>Producto:</p>
<p>
<label for="nombre2"></label>
<select class="combo1" id="p" name="p" onChange="cargafecha();">
<?php
while ($fproducto= mysql_fetch_array($producto)) {
echo "<option value='".$fproducto['0']."' selected>"." ".utf8_encode($fproducto['2'])."</option>";
}
?>
</select>
<p>Fecha última compra:</p>
<p>
<label for="b"></label>
<input class="caja1" type="text" name="fecha" id="fecha" />
</p>
</form>
esto es lo que tengo ... aqui como pueden ver tengo ya cargado el combo pero no se como hacer para que el textbox se llene automaticamente...Por favor necesito ayuda de manero urgente...!!
De antemano se les agradece un mundo