var str='<table border="0" cellpadding="0" cellspacing="0"><tr><td><select name="age_sel" size="1" class="find" style="color:#ff0000; font-weight: bold; height:21; background-color:#ffffff; width: 65px; font-size: 11px;">';
str +='<option value="18" selected>MIN';
for (i=18;i<60;i++) str+='<option value='+i+'>'+i+'</option>\n';
str +='</select></td>';
document.write(str);
str ='<td><select name="age1_sel" size="1" class="find" style="color:#ff0000; font-weight: bold; height:21; background-color:#ffffff; width: 65px; font-size: 11px;">';
str +='<option value="60" selected>MAX</option>';
for (i=18;i<61;i++) str+='<option value='+i+'>'+i+'</option>\n';
str +='</select></td></tr></table>';
document.write(str);
