|
|
 |
|
Dependent Care Reimbursement Account (DCRA) |
This voluntary benefit plan offers eligible employees the ability to pay
for eligible out-of-pocket expenses for dependent care with pre-tax dollars if the
care is required in order for the employee (and spouse, if married) to work.
Enrollment Information:
- Complete
Enrollment
Form » (.pdf) and return to HR Services.
- Can contribute $20 to $416.66 each month ($5,000 maximum per year) to
personal account.
- Deducted from pay before federal, state and Social Security (FICA)
taxes.
- Must re-enroll during the annual open enrollment period each fall to
participate during following calendar year. (Can change contribution amount at
that time.)
Reimbursement Information
- File claim for reimbursement by completing
Claim Form »
(.pdf), attaching documentation and mailing to
ASI P.O. Box 6044 Columbia, MO 65205-6044
or fax to (573) 874-0425.
- For expenses to be eligible:
- Dependent must be child under 13 for whom employee or spouse is entitled to
claim dependent status on income tax return, or spouse who is unable to care for
him/herself, or a financially dependent member of employee's household; and
- Care must be required in order for employee to be gainfully employed and,
if married, spouse also must be employed or actively looking for work.
- See DCRA
Brochure » (.pdf) for additional eligibility rules.
- Money left in employee's account after expenses are paid for the year is forfeited.
More Information
|
|
Last Updated:
<%
'Dim strFileName
'Dim dtmLastModified
'Dim dtmLastModifiedDate
'Dim dtmLastModifiedTime
Dim strFileName, strFileNameCalendar, objFile, objFileSystemObject
Dim dtmLastModified, dtmLastModifiedDate, dtmLastModifiedTime
Dim sLastModifiedMonth
strFileName = Request.ServerVariables("SCRIPT_NAME")
strFileName = Replace(strFileName, "/", "\")
strFileName = Server.MapPath(strFileName)
Set objFileSystemObject = Server.CreateObject("Scripting.FileSystemObject")
Set objFile = objFileSystemObject.GetFile(strFileName)
dtmLastModified = objFile.DateLastModified
Set objFile = Nothing
Set objFileSystemObject = Nothing
dtmLastModifiedDate = FormatDateTime(dtmLastModified, 1)
dtmLastModifiedTime = FormatDateTime(dtmLastModified, 3)
Select Case Month(dtmLastModified)
Case 1
sLastModifiedMonth = "January"
Case 2
sLastModifiedMonth = "February"
Case 3
sLastModifiedMonth = "March"
Case 4
sLastModifiedMonth = "April"
Case 5
sLastModifiedMonth = "May"
Case 6
sLastModifiedMonth = "June"
Case 7
sLastModifiedMonth = "July"
Case 8
sLastModifiedMonth = "August"
Case 9
sLastModifiedMonth = "September"
Case 10
sLastModifiedMonth = "October"
Case 11
sLastModifiedMonth = "November"
Case 12
sLastModifiedMonth = "December"
End Select
Response.Write sLastModifiedMonth & " " & Day(dtmLastModified) & ", " & Year(dtmLastModified)
%>
|