Phoenix13,
добавить как показано ниже label и css, а в скрипте присваивать/убирать класс
<!DOCTYPE HTML>
<html>
<head>
<title>Untitled</title>
<meta charset="utf-8">
<style type="text/css">
input.ok + label:after{
content: '\2714';
color: green;
font-size: 23px;
}
input.no + label:after{
content: '\2715';
color: red;
font-size: 23px;
}
</style>
</head>
<body>
<input name="" class="ok"><label for=""> </label>
<input name="" class="no"><label for=""> </label>
</body>
</html>