bueno empezando por tu post y descartando los cambios que te han hecho (no pq no sirvan sino pq solo voy a analizar la logica de 1 persona... la tuya) aqui esta mi contribucion.
Para iniciar tienes 2 campos llamados "combo" que eso en si ya esta un poco mal.
Te suygiero una mejor forma para el option y te puse una validacion adicional para cuando ya se selecciono algo del combo...
Código:
<p>
<table width="674" height="30" align="center">
<tr bgcolor="#CCCCCC" class="Estilo1">
</td>
</p>
<table width="600" align="center">
<tr>
<td align="left" height="25" valign="top" nowrap><div align="left"><font size="2">
<script language="javascript" type="text/javascrip" src="ajaxfun.js"></script>
<?php
//Conexion con la base de datos
$link = @mysql_connect ("localhost","root","") or die("Error de conexion: ".mysql_error());
@mysql_select_db("name",$link) or die("Error de selección: ".mysql_error());
?>
<table width="600" align="center">
<tr>
<td align="left" height="25" valign="top" nowrap><div align="left"></div></td>
</tr>
<tr>
<td align="left" valign="top" height="25"></td>
<form name="form1" method="GET" onSubmit"enviarDatos('form1', 'combito.php');" action="combito.php?tarea=<?php echo $row['id_tabla']; ?>" id="form1">
<?php
$qry="select id_tabla, tarea from actividades order by tarea";
echo $qry."<br>";
$result=mysql_query($qry);
echo '<select name="combo" size="1" id="combo" onChange="javascript:document.form1.submit();">';
echo "<option value='0'>___</option>";
while ($row=mysql_fetch_array($result))
{
?>
<option value='<?=$row['id_tabla'];?>' <? if($row['id_tabla']==$_GET['combo']) echo "selected"; ?>><?= $row['tarea']; ?></option>
<?
}
echo "</select>";
?>
</form>
<?
if(isset($_GET["coombo"]))
{
$id=$_GET['combo'];//es el valor del combo no del formulario
$row=mysql_fetch_array(mysql_query("select * from actividades where id_tabla='".$id."'"));
?>
<table width="513" height="73" border="1" align="center" bordercolor="#000000" bgcolor="#DFDFDF">
<td width="189"><div align="center">Sistema de Monitoreo y Evaluación </div></td>
<td width="182"><div align="center">Dependencia</div></td>
<td width="120"><div align="right">
<div align="right"><?php echo $row['dependencia'] ?></div>
</div></td>
</tr>
</table>
<table width="514" height="30" border="1" align="center" bordercolor="#000000">
<tr bgcolor="#DFDFDF">
<td width="191">Nombre de la Tarea </td>
<td width="311" height="24"><?php echo $row ['actividad'] ?></td>
</tr>
</table>
<table width="515" height="171" border="1" align="center" bordercolor="#000000">
<td width="191" bgcolor="#DFDFDF">Fecha de inicio </td>
<td width="183" height="28" bordercolor="#000000" bgcolor="#DFDFDF"><p>
<?php echo $row ['f_i'] ?></p></td>
<td width="119" rowspan="6" nowrap bordercolor="#000000" bgcolor="#DFDFDF"> </td>
</tr>
<tr bgcolor="#CCCCCC" class="Estilo1">
<td bgcolor="#DFDFDF">Fecha de final </td>
<td height="24" bordercolor="#000000" bgcolor="#DFDFDF"><?php echo $row ['f_f'] ?></a></td>
</tr>
<tr bgcolor="#CCCCCC" class="Estilo1">
<td bgcolor="#DFDFDF">Fecha real de culminación</td>
<td height="24" bordercolor="#000000" bgcolor="#DFDFDF"><?php echo $row ['f_r'] ?></a></td>
</tr>
<tr bgcolor="#CCCCCC" class="Estilo1">
<td bgcolor="#DFDFDF">Monto de la actividad </td>
<td height="24" bordercolor="#000000" bgcolor="#DFDFDF"><?php echo $row ['monto'] ?></td>
</tr>
<tr bgcolor="#CCCCCC" class="Estilo1">
<td bgcolor="#DFDFDF">Trimestre a Ejecutar </td>
<td height="31" bordercolor="#000000" bgcolor="#DFDFDF"><?php echo $row ['trimestre'] ?></td>
</tr>
<tr bgcolor="#CCCCCC" class="Estilo1">
<td bgcolor="#DFDFDF">Unidad de medida: </td>
<td height="24" bgcolor="#DFDFDF"><?php echo $row ['unidad'] ?></td>
</tr>
</table>
<?
}
?>
<p></p>
Luego nos dices como te funciono...
Una ultima cosa, no es muy recomendable anidar las funciones como lo haces en el ultimo qry pues de repente necesitas imprimir la consulta a´pantalla y es mas cambios
yo te recomiendo lo siguiente
$qry="select ....";
echo $qry.";<br>"; // y se comentariza cuando ya vez que funciona bien
$result=mysql_query($qry);
$row=mysql_fetch_row($result);