Simon,
Unfortunatley it is still not working when i open the page even if the value of txtPriceOut is > 0 the txtPriceInc box is still enabled. I have posted my code if you don't mind looking at it
<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
<!--#include file="../Connections/Estimate.asp" -->
<%
' *** Edit Operations: declare variables
Dim MM_editAction
Dim MM_abortEdit
Dim MM_editQuery
Dim MM_editCmd
Dim MM_editConnection
Dim MM_editTable
Dim MM_editRedirectUrl
Dim MM_editColumn
Dim MM_recordId
Dim MM_fieldsStr
Dim MM_columnsStr
Dim MM_fields
Dim MM_columns
Dim MM_typeArray
Dim MM_formVal
Dim MM_delim
Dim MM_altVal
Dim MM_emptyVal
Dim MM_i
MM_editAction = CStr(Request.ServerVariables("SCRIPT_NAME"

)
If (Request.QueryString <> ""

Then
MM_editAction = MM_editAction & "?" & Request.QueryString
End If
' boolean to abort record edit
MM_abortEdit = false
' query string to execute
MM_editQuery = ""
%>
<%
' *** Update Record: set variables
If (CStr(Request("MM_update"

) = "frmUpdate" And CStr(Request("MM_recordId"

) <> ""

Then
MM_editConnection = MM_Estimate_STRING
MM_editTable = "tblEstData"
MM_editColumn = "ID"
MM_recordId = "" + Request.Form("MM_recordId"

+ ""
MM_editRedirectUrl = "EFACMSearch.asp"
MM_fieldsStr = "txtDateSup|value|txtOrder|value|txtPriceOut|value|txtPriceInc|value|cmbComments|value|txtFeed|value|chkCompleted|value"
MM_columnsStr = "Date_Supplied|',none,NULL|Order_Placed|',none,''|Price_Out_Percent|none,none,NULL|Increase_Price|none,none,NULL|Comments|',none,''|Feedback|',none,''|Completed|none,'Y','N'"
' create the MM_fields and MM_columns arrays
MM_fields = Split(MM_fieldsStr, "|"

MM_columns = Split(MM_columnsStr, "|"
' set the form values
For MM_i = LBound(MM_fields) To UBound(MM_fields) Step 2
MM_fields(MM_i+1) = CStr(Request.Form(MM_fields(MM_i)))
Next
' append the query string to the redirect URL
If (MM_editRedirectUrl <> "" And Request.QueryString <> ""

Then
If (InStr(1, MM_editRedirectUrl, "?", vbTextCompare) = 0 And Request.QueryString <> ""

Then
MM_editRedirectUrl = MM_editRedirectUrl & "?" & Request.QueryString
Else
MM_editRedirectUrl = MM_editRedirectUrl & "&" & Request.QueryString
End If
End If
End If
%>
<%
' *** Update Record: construct a sql update statement and execute it
If (CStr(Request("MM_update"

) <> "" And CStr(Request("MM_recordId"

) <> ""

Then
' create the sql update statement
MM_editQuery = "update " & MM_editTable & " set "
For MM_i = LBound(MM_fields) To UBound(MM_fields) Step 2
MM_formVal = MM_fields(MM_i+1)
MM_typeArray = Split(MM_columns(MM_i+1),","

MM_delim = MM_typeArray(0)
If (MM_delim = "none"

Then MM_delim = ""
MM_altVal = MM_typeArray(1)
If (MM_altVal = "none"

Then MM_altVal = ""
MM_emptyVal = MM_typeArray(2)
If (MM_emptyVal = "none"

Then MM_emptyVal = ""
If (MM_formVal = ""

Then
MM_formVal = MM_emptyVal
Else
If (MM_altVal <> ""

Then
MM_formVal = MM_altVal
ElseIf (MM_delim = "'"

Then ' escape quotes
MM_formVal = "'" & Replace(MM_formVal,"'","''"

& "'"
Else
MM_formVal = MM_delim + MM_formVal + MM_delim
End If
End If
If (MM_i <> LBound(MM_fields)) Then
MM_editQuery = MM_editQuery & ","
End If
MM_editQuery = MM_editQuery & MM_columns(MM_i) & " = " & MM_formVal
Next
MM_editQuery = MM_editQuery & " where " & MM_editColumn & " = " & MM_recordId
If (Not MM_abortEdit) Then
' execute the update
Set MM_editCmd = Server.CreateObject("ADODB.Command"

MM_editCmd.ActiveConnection = MM_editConnection
MM_editCmd.CommandText = MM_editQuery
MM_editCmd.Execute
MM_editCmd.ActiveConnection.Close
If (MM_editRedirectUrl <> ""

Then
Response.Redirect(MM_editRedirectUrl)
End If
End If
End If
%>
<%
Dim RSUpdate__MMColParam
RSUpdate__MMColParam = "1"
If (Request.QueryString("ID"

<> ""

Then
RSUpdate__MMColParam = Request.QueryString("ID"

End If
%>
<%
Dim RSUpdate
Dim RSUpdate_numRows
Set RSUpdate = Server.CreateObject("ADODB.Recordset"

RSUpdate.ActiveConnection = MM_Estimate_STRING
RSUpdate.Source = "SELECT * FROM tblEstData WHERE ID = " + Replace(RSUpdate__MMColParam, "'", "''"

+ ""
RSUpdate.CursorType = 0
RSUpdate.CursorLocation = 2
RSUpdate.LockType = 1
RSUpdate.Open()
RSUpdate_numRows = 0
intPercent=RSUpdate.Fields.Item("Price_Out_Percent"

.Value/100
%>
<html>
<head>
<title>Estimating Feedback</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script>
function checkBoxes(){
boxArr = new Array("txtDateSup", "txtOrder", "cmbComments"

dataFound = "No"
for (x=0; x<boxArr.length; x++){
boxVal = eval ("document.frmUpdate." + boxArr[x] + ".value"

if (boxVal != ""

{
dataFound = "Yes"
}
}
document.frmUpdate.txtFeed.value = dataFound
}
</script>
<script>
function ToggleTextBoxDisplay(){
var txtPriceOut=document.getElementById("txtPriceOut"

var txtPriceInc=document.getElementById("txtPriceInc"
if(txtPriceOut.value==0){
txtPriceInc.disabled = true;
}else{
txtPriceInc.disabled = false;
}
</script>
<link href="EFStyles.css" rel="stylesheet" type="text/css">
<script language="JavaScript" src="../CleaningSchedules/date-picker.js"></script>
</head>
<body>
<div align="center"> Clicking on the Smurfit Logo will take you back
to the Home Page </div>
<form action="<%=MM_editAction%>" method="POST" name="frmUpdate" id="frmUpdate" onSubmit="checkBoxes()">
<table width="88%" align="center" style = "border-bottom: 1px solid blue; border-left: 1px solid blue; border-top: 1px solid blue; border-right: 1px solid blue">
<tr bgcolor="#000099">
<td height="25" colspan="4"> <div align="center"><strong><font color="#FFFFFF">ACCOUNT
MANAGER UPDATE FORM</font></strong></div></td>
</tr>
<tr bgcolor="#0099FF">
<td width="19%" height="25" bgcolor="#FFFFFF"> <div align="right">Record
ID : </div></td>
<td width="24%" bgcolor="#0099FF"> <div align="left"><strong><font color="#FFFFFF"> <%=(RSUpdate.Fields.Item("ID"

.Value)%></font></strong></div></td>
<td width="23%" bgcolor="#FFFFFF"> <div align="right">Date Supplied : </div></td>
<td width="34%" bgcolor="#CCCCCC"> <input name="txtDateSup" type="text" id="txtDateSup3" value="<%=(RSUpdate.Fields.Item("Date_Supplied"

.Value)%>" size="12" maxlength="10">
<a href="javascript:show_calendar('frmUpdate.txtDateSup');" onMouseOver="window.status='Date Picker';return true;" onMouseOut="window.status='';return true;"><img src="../mycal.gif" width=14 height=16 border=1 align=top></a>
</tr>
<tr bgcolor="#0099FF">
<td height="25" bgcolor="#FFFFFF"> <div align="right">Username : </div></td>
<td><div align="left"><strong><font color="#FFFFFF"> <%=(RSUpdate.Fields.Item("UserName"

.Value)%></font></strong></div></td>
<td bgcolor="#FFFFFF"> <div align="right">Order Placed : </div></td>
<td bgcolor="#CCCCCC">
<input name="txtOrder" type="text" id="txtOrder3" value="<%=(RSUpdate.Fields.Item("Order_Placed"

.Value)%>" size="4" maxlength="1" ></td>
</tr>
<tr bgcolor="#0099FF">
<td height="25" bgcolor="#FFFFFF"> <div align="right">Spec No. : </div></td>
<td><div align="left"><strong><font color="#FFFFFF"> <%=(RSUpdate.Fields.Item("SpecNo"

.Value)%></font></strong></div></td>
<td bgcolor="#FFFFFF"> <div align="right">Price Out % : </div></td>
<td bgcolor="#CCCCCC"> <input name="txtPriceOut" type="percent" id="txtPriceOut" value="<%= FormatNumber((RSUpdate.Fields.Item("Price_Out_Percent"

.Value), 2, -2, -2, -2) %>" size="10" maxlength="10" ></td>
</tr>
<tr bgcolor="#0099FF">
<td height="25" bgcolor="#FFFFFF"> <div align="right">Customer : </div></td>
<td><div align="left"><strong><font color="#FFFFFF"> <%=(RSUpdate.Fields.Item("Customer"

.Value)%></font></strong></div></td>
<td bgcolor="#FFFFFF"> <div align="right">Price Increased : </div></td>
<td bgcolor="#CCCCCC"> <input name="txtPriceInc" type="text" id="txtPriceInc" value="<%=((RSUpdate.Fields.Item("Increase_Price"

.Value))%>" size="10" maxlength="10" ></td>
</tr>
<tr bgcolor="#0099FF">
<td height="25" bgcolor="#FFFFFF"> <div align="right">Account Manager : </div></td>
<td><div align="left"><strong><font color="#FFFFFF"> <%=(RSUpdate.Fields.Item("AccountM"

.Value)%></font></strong></div></td>
<td bgcolor="#FFFFFF"> <div align="right">Present Comments : </div></td>
<td bgcolor="#CCCCCC"> <%=(RSUpdate.Fields.Item("Comments"

.Value)%></td>
</tr>
<tr bgcolor="#0099FF">
<td height="25" bgcolor="#FFFFFF"> <div align="right">Date In : </div></td>
<td bgcolor="#0099FF">
<div align="left"><strong><font color="#FFFFFF"> <%=(RSUpdate.Fields.Item("Date_In"

.Value)%></font></strong></div></td>
<td bgcolor="#FFFFFF"> <div align="right">Comments : </div></td>
<td bgcolor="#CCCCCC">
<select name="cmbComments" id="select" title="<%=(RSUpdate.Fields.Item("Comments"

.Value)%>" >
<option> </option>
<option>Unsuccesful - delay in Pricing</option>
<option>Unsuccesful - Due to Lead Time</option>
<option>Unsuccesful - Origination</option>
<option>Unsuccesful - Minimum Run to Long</option>
<option>Unsuccesful - Withdrawn Line</option>
<option>Unsuccesful - Design Alteration</option>
</select></td>
</tr>
<tr bgcolor="#0099FF">
<td height="25" bgcolor="#FFFFFF"> <div align="right">Date Out : </div></td>
<td><div align="left"><strong><font color="#FFFFFF"> <%=(RSUpdate.Fields.Item("Date_Out"

.Value)%></font></strong></div></td>
<td bgcolor="#FFFFFF"> <div align="right">Feedback : </div></td>
<td bgcolor="#CCCCCC">
<input name="txtFeed" type="text" id="txtFeed2" value="<%=(RSUpdate.Fields.Item("Feedback"

.Value)%>" size="4" maxlength="3"></td>
</tr>
<tr bgcolor="#0099FF">
<td height="25" bgcolor="#FFFFFF"> <div align="right"></div></td>
<td><div align="left"></div></td>
<td bgcolor="#FFFFFF"> <div align="right">Completed: </div></td>
<td bgcolor="#CCCCCC">
<input name="chkCompleted" type="checkbox" id="chkCompleted" value="checkbox"></td>
</tr>
<tr bgcolor="#000099">
<td height="25" colspan="4">
<div align="center">
<input name="Update" type="submit" id="Update" value="Update">
</div></td>
</tr>
</table>
<input type="hidden" name="MM_update" value="frmUpdate">
<input type="hidden" name="MM_recordId" value="<%= RSUpdate.Fields.Item("ID"

.Value %>">
</form>
</body>
</html>
<%
RSUpdate.Close()
Set RSUpdate = Nothing
%>
Regards
Paul