Knockoutjs-style select for donejs
npm install donejs-selectKnockoutjs-style select for donejs

http://knockoutjs.com/documentation/options-binding.html
1. install it in your project npm install donejs-select --save
1. import it in your stache file
1. finally insert it including the options, example:
```
{(selected-element-value)}=yourOwnVariable
debug=true
options-caption="choose an element:"
options-caption-separator=true
options-caption-separator-text="//////////"
options-text="text"
options-value="value"
/>
NOTE: optionsArrayOfObject must be an array of objects
Assume you have:
[{text: "hello", value: 1}, {text: "good bye", value: 999}]
then the select will show "hello" and "good bye" and the selected value will be either 1 or 999
1. npm test
1. or http://localhost:8100/test/test.html
1. or http://localhost:8100/src/donejs-select.html
---
With StealJS, you can import this module directly in a template that is autorendered:
`js`
import plugin from 'donejs-select';
Use require to load donejs-select and everything elsedonejs-select
needed to create a template that uses :
`js`
var plugin = require("donejs-select");
Configure the can and jquery paths and the donejs-select package:
`html`
Load the global version of the plugin:
`html`
To make a build of the distributables into dist/ in the cloned repository run
``
npm install
node build
Tests can run in the browser by opening a webserver and visiting the test.html page.
Automated tests that run the tests from the command line in Firefox can be run with
```
npm test